UNPKG

@imgly/plugin-ai-generation-web

Version:

AI generation plugin for the CE.SDK editor

7 lines (6 loc) 590 B
import { BuilderRenderFunctionContext } from '@cesdk/cesdk-js'; import { GetPropertyInput, Property } from './types'; import Provider, { Output, OutputKind, PanelInputSchema } from '../core/provider'; import { UIOptions, CommonConfiguration } from '../types'; declare function renderProperty<K extends OutputKind, I, O extends Output>(context: BuilderRenderFunctionContext<any>, property: Property, provider: Provider<K, I, O>, panelInput: PanelInputSchema<K, I>, options: UIOptions, config: CommonConfiguration<I, O>, kind: K): GetPropertyInput | undefined; export default renderProperty;