@cesdk/node 1.59.0-nightly.20250820 → 1.59.0-nightly.20250822
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/assets/core/{cesdk-v1.59.0-nightly.20250820-26IZYBVF.wasm → cesdk-v1.59.0-nightly.20250822-JXH3YX45.wasm} +0 -0
- package/index.d.ts +2 -2
- package/index.js +1 -1
- package/package.json +1 -1
- /package/assets/core/{cesdk-v1.59.0-nightly.20250820-44YCFRT6.data → cesdk-v1.59.0-nightly.20250822-44YCFRT6.data} +0 -0
|
Binary file
|
package/index.d.ts
CHANGED
|
@@ -6395,14 +6395,14 @@ export declare type EffectTypeShorthand = 'adjustments' | 'cross_cut' | 'dot_pat
|
|
|
6395
6395
|
* Defines the structure of an engine plugin, including its name, version, and initialization function.
|
|
6396
6396
|
* - 'name': The name of the plugin.
|
|
6397
6397
|
* - 'version': The version of the plugin.
|
|
6398
|
-
* - 'initialize': The function to initialize the plugin with the provided context.
|
|
6398
|
+
* - 'initialize': The function to initialize the plugin with the provided context. Can be synchronous or asynchronous.
|
|
6399
6399
|
*
|
|
6400
6400
|
* @public
|
|
6401
6401
|
*/
|
|
6402
6402
|
export declare interface EnginePlugin {
|
|
6403
6403
|
name: string;
|
|
6404
6404
|
version: string;
|
|
6405
|
-
initialize: (context: EnginePluginContext) => void
|
|
6405
|
+
initialize: (context: EnginePluginContext) => void | Promise<void>;
|
|
6406
6406
|
}
|
|
6407
6407
|
|
|
6408
6408
|
/**
|