unlayer-types 1.130.0 → 1.131.0
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 +14 -14
- package/package.json +1 -1
package/embed.d.ts
CHANGED
@@ -2469,30 +2469,30 @@ declare module "engine/tools/content/image" {
|
|
2469
2469
|
}
|
2470
2470
|
declare module "editor/components/editors/pixie/pixie.umd" {
|
2471
2471
|
const _exports: {
|
2472
|
-
new (
|
2472
|
+
new (t: any): {
|
2473
2473
|
readonly state: any;
|
2474
2474
|
readonly defaultConfig: any;
|
2475
|
-
open(
|
2475
|
+
open(t?: {}): Promise<any>;
|
2476
2476
|
close(): void;
|
2477
|
-
setConfig(
|
2477
|
+
setConfig(t: any): void;
|
2478
2478
|
uploadAndAddImage(): any;
|
2479
2479
|
uploadAndReplaceMainImage(): any;
|
2480
2480
|
uploadAndOpenStateFile(): any;
|
2481
|
-
newCanvas(
|
2482
|
-
getState(
|
2483
|
-
setState(
|
2484
|
-
setStateFromUrl(
|
2485
|
-
openTool(
|
2481
|
+
newCanvas(t: any, n: any, r: any): any;
|
2482
|
+
getState(t: any): string;
|
2483
|
+
setState(t: any): any;
|
2484
|
+
setStateFromUrl(t: any): Promise<any>;
|
2485
|
+
openTool(t: any): void;
|
2486
2486
|
applyChanges(): void;
|
2487
2487
|
cancelChanges(): void;
|
2488
|
-
resetEditor(
|
2489
|
-
togglePanel(
|
2490
|
-
on(
|
2488
|
+
resetEditor(t: any): Promise<void>;
|
2489
|
+
togglePanel(t: any, n: any): void;
|
2490
|
+
on(t: any, n: any): void;
|
2491
2491
|
isDirty(): any;
|
2492
|
-
get(
|
2493
|
-
notify(
|
2492
|
+
get(t: any): any;
|
2493
|
+
notify(t: any): void;
|
2494
2494
|
};
|
2495
|
-
init(
|
2495
|
+
init(t: any): Promise<any>;
|
2496
2496
|
};
|
2497
2497
|
export = _exports;
|
2498
2498
|
}
|
package/package.json
CHANGED