UNPKG

@imgly/plugin-background-removal-web

Version:

Background Removal plugin for the CE.SDK editor

11 lines (10 loc) 508 B
import { EditorPlugin } from '@cesdk/cesdk-js'; import { type BackgroundRemovalProvider } from './processBackgroundRemoval'; import { UserInterfaceConfiguration } from './types'; export declare const PLUGIN_ID = "@imgly/plugin-background-removal-web"; export interface PluginConfiguration { ui?: UserInterfaceConfiguration; provider?: BackgroundRemovalProvider; } declare const _default: (pluginConfiguration?: PluginConfiguration) => Omit<EditorPlugin, "name" | "version">; export default _default;