n8n-nodes-base
Version:
Base nodes of n8n
18 lines (15 loc) • 515 B
text/typescript
/**
* Iterable - User Resource
* Re-exports all operation types for this resource.
*/
import type { IterableV1UserDeleteNode } from './operation_delete';
import type { IterableV1UserGetNode } from './operation_get';
import type { IterableV1UserUpsertNode } from './operation_upsert';
export * from './operation_delete';
export * from './operation_get';
export * from './operation_upsert';
export type IterableV1UserNode =
| IterableV1UserDeleteNode
| IterableV1UserGetNode
| IterableV1UserUpsertNode
;