TControlFlowReplacer.d.ts 317 B

12345
  1. import { IControlFlowReplacer } from '../interfaces/IControlFlowReplacer';
  2. import { ICustomNode } from '../interfaces/custom-nodes/ICustomNode';
  3. import { IOptions } from '../interfaces/IOptions';
  4. export type TControlFlowReplacer = (new (nodes: Map <string, ICustomNode>, options: IOptions) => IControlFlowReplacer);