n8n-nodes-base
Version:
Base nodes of n8n
15 lines (12 loc) • 413 B
text/typescript
/**
* Customer.io - Segment Resource
* Re-exports all operation types for this resource.
*/
import type { CustomerIoV1SegmentAddNode } from './operation_add';
import type { CustomerIoV1SegmentRemoveNode } from './operation_remove';
export * from './operation_add';
export * from './operation_remove';
export type CustomerIoV1SegmentNode =
| CustomerIoV1SegmentAddNode
| CustomerIoV1SegmentRemoveNode
;