n8n-nodes-base
Version:
Base nodes of n8n
18 lines (15 loc) • 549 B
text/typescript
/**
* KoBoToolbox - Form Resource
* Re-exports all operation types for this resource.
*/
import type { KoBoToolboxV1FormGetNode } from './operation_get';
import type { KoBoToolboxV1FormGetAllNode } from './operation_get_all';
import type { KoBoToolboxV1FormRedeployNode } from './operation_redeploy';
export * from './operation_get';
export * from './operation_get_all';
export * from './operation_redeploy';
export type KoBoToolboxV1FormNode =
| KoBoToolboxV1FormGetNode
| KoBoToolboxV1FormGetAllNode
| KoBoToolboxV1FormRedeployNode
;