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