@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/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
  /**