ExclusiveGateway.d.ts 563 B

12345678910111213141516
  1. import { PolygonNode, PolygonNodeModel } from '@logicflow/core';
  2. declare class ExclusiveGatewayModel extends PolygonNodeModel {
  3. static extendKey: string;
  4. constructor(data: any, graphModel: any);
  5. }
  6. declare class ExclusiveGatewayView extends PolygonNode {
  7. static extendKey: string;
  8. getShape(): import("preact").VNode<any>;
  9. }
  10. declare const ExclusiveGateway: {
  11. type: string;
  12. view: typeof ExclusiveGatewayView;
  13. model: typeof ExclusiveGatewayModel;
  14. };
  15. export { ExclusiveGatewayView, ExclusiveGatewayModel };
  16. export default ExclusiveGateway;