fix: fix Style type (#5881)

This commit is contained in:
Aaron 2024-06-19 14:29:14 +08:00 committed by GitHub
parent 6c74961f30
commit aa341453ad
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -51,5 +51,5 @@ export interface StaticEdgeOptions {
}
export interface EdgeStyle extends Partial<BaseEdgeStyleProps> {
[key: string]: any;
[key: string]: unknown;
}

View File

@ -51,5 +51,5 @@ export interface StaticNodeOptions {
}
export interface NodeStyle extends Partial<BaseNodeStyleProps> {
[key: string]: any;
[key: string]: unknown;
}