@imgly/plugin-ai-generation-web
Version:
AI generation plugin for the CE.SDK editor
11 lines (10 loc) • 324 B
TypeScript
import CreativeEditorSDK from '@cesdk/cesdk-js';
/**
* Registers a dock component for AI generation that opens
* the AI generation panel and closes any other AI panels.
*/
declare function registerDockComponent(options: {
cesdk: CreativeEditorSDK;
panelId: string;
}): void;
export default registerDockComponent;