@chaibuilder/sdk 3.0.7 → 3.0.9
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/dist/core.cjs +4 -4
- package/dist/core.d.ts +1 -1
- package/dist/core.js +627 -630
- package/dist/render.cjs +2 -2
- package/dist/render.d.ts +1 -15
- package/dist/render.js +104 -79
- package/package.json +1 -1
package/dist/core.d.ts
CHANGED
|
@@ -504,7 +504,7 @@ export declare const registerChaiLibrary: <T extends Record<string, any> = Recor
|
|
|
504
504
|
|
|
505
505
|
export declare const registerChaiMediaManager: (component: React.ComponentType<MediaManagerProps>) => void;
|
|
506
506
|
|
|
507
|
-
export declare const registerChaiPreImportHTMLHook: (fn: (code: string) => string) => void;
|
|
507
|
+
export declare const registerChaiPreImportHTMLHook: (fn: (code: string) => Promise<string>) => void;
|
|
508
508
|
|
|
509
509
|
export declare const registerChaiSaveToLibrary: (component: ComponentType<SaveToLibraryProps>) => void;
|
|
510
510
|
|