node-registries.tsx 305 B

12345678910
  1. import { WorkflowNodeRegistry } from '@flowgram.ai/free-layout-editor';
  2. import { DEFAULT_FORM_META } from './form-meta';
  3. export const DEFAULT_DEMO_REGISTRY: WorkflowNodeRegistry = {
  4. type: 'custom',
  5. meta: {},
  6. defaultPorts: [{ type: 'output' }, { type: 'input' }],
  7. formMeta: DEFAULT_FORM_META,
  8. };