n8n-nodes-base
Version:
Base nodes of n8n
15 lines (12 loc) • 384 B
text/typescript
/**
* Affinity - List Resource
* Re-exports all operation types for this resource.
*/
import type { AffinityV1ListGetNode } from './operation_get';
import type { AffinityV1ListGetAllNode } from './operation_get_all';
export * from './operation_get';
export * from './operation_get_all';
export type AffinityV1ListNode =
| AffinityV1ListGetNode
| AffinityV1ListGetAllNode
;