n8n-nodes-base
Version:
Base nodes of n8n
15 lines (12 loc) • 402 B
text/typescript
/**
* Autopilot - List Resource
* Re-exports all operation types for this resource.
*/
import type { AutopilotV1ListCreateNode } from './operation_create';
import type { AutopilotV1ListGetAllNode } from './operation_get_all';
export * from './operation_create';
export * from './operation_get_all';
export type AutopilotV1ListNode =
| AutopilotV1ListCreateNode
| AutopilotV1ListGetAllNode
;