UNPKG

@logicflow/extension

Version:
17 lines (16 loc) 596 B
import LogicFlow, { h, GraphModel, PolygonNode, PolygonNodeModel } from '@logicflow/core'; import NodeConfig = LogicFlow.NodeConfig; export declare class ExclusiveGatewayModel extends PolygonNodeModel { static extendKey: string; constructor(data: NodeConfig, graphModel: GraphModel); } export declare class ExclusiveGatewayView extends PolygonNode { static extendKey: string; getShape(): h.JSX.Element; } export declare const ExclusiveGateway: { type: string; view: typeof ExclusiveGatewayView; model: typeof ExclusiveGatewayModel; }; export default ExclusiveGateway;