n8n-nodes-base
Version:
Base nodes of n8n
18 lines (15 loc) • 499 B
text/typescript
/**
* Cockpit Node - Version 1
* Re-exports all discriminator combinations.
*/
import type { CockpitV1CollectionNode } from './resource_collection';
import type { CockpitV1FormNode } from './resource_form';
import type { CockpitV1SingletonNode } from './resource_singleton';
export * from './resource_collection';
export * from './resource_form';
export * from './resource_singleton';
export type CockpitV1Node =
| CockpitV1CollectionNode
| CockpitV1FormNode
| CockpitV1SingletonNode
;