index.d.ts 380 B

123456789101112131415
  1. import LogicFlow from '@logicflow/core';
  2. declare class InsertNodeInPolyline {
  3. static pluginName: string;
  4. _lf: LogicFlow;
  5. dndAdd: boolean;
  6. dropAdd: boolean;
  7. deviation: number;
  8. constructor({ lf }: {
  9. lf: any;
  10. });
  11. eventHandler(): void;
  12. insetNode(nodeData: any): void;
  13. }
  14. export { InsertNodeInPolyline };
  15. export default InsertNodeInPolyline;