ICustomNodesFactory.d.ts 241 B

12345678
  1. import { ICustomNode } from './custom-nodes/ICustomNode';
  2. export interface ICustomNodesFactory {
  3. /**
  4. * @returns {Map <string, ICustomNode> | undefined}
  5. */
  6. initializeCustomNodes (): Map <string, ICustomNode> | undefined;
  7. }