n8n-nodes-base
Version:
Base nodes of n8n
15 lines (12 loc) • 414 B
text/typescript
/**
* Emelia - ContactList Resource
* Re-exports all operation types for this resource.
*/
import type { EmeliaV1ContactListAddNode } from './operation_add';
import type { EmeliaV1ContactListGetAllNode } from './operation_get_all';
export * from './operation_add';
export * from './operation_get_all';
export type EmeliaV1ContactListNode =
| EmeliaV1ContactListAddNode
| EmeliaV1ContactListGetAllNode
;