@flow-editor/render
Version:
Dawn数据流的React实现
9 lines (8 loc) • 367 B
TypeScript
/// <reference types="react" />
import { DawnNode, IDawnBrickConfig, IDawnPathGlobal, Model } from '@flow-editor/dawn';
export interface IBrickDispatcherOptions {
scope: DawnNode<IDawnPathGlobal>;
model: Model;
config: IDawnBrickConfig;
}
export declare function DawnBrickDispatcher({ config, model, scope }: IBrickDispatcherOptions): JSX.Element | null;