unlayer-types 1.5.29 → 1.5.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/embed.d.ts +1 -7
- package/package.json +1 -1
package/embed.d.ts
CHANGED
@@ -452,13 +452,7 @@ declare module "state/types/index" {
|
|
452
452
|
export interface ToolConfig {
|
453
453
|
enabled?: boolean | undefined;
|
454
454
|
position?: number | undefined;
|
455
|
-
properties?:
|
456
|
-
[key: string]: {
|
457
|
-
value: string;
|
458
|
-
};
|
459
|
-
} | {
|
460
|
-
[key: string]: string;
|
461
|
-
} | undefined;
|
455
|
+
properties?: object | undefined;
|
462
456
|
}
|
463
457
|
export interface ToolsConfig {
|
464
458
|
[key: string]: ToolConfig;
|
package/package.json
CHANGED