n8n-nodes-base
Version:
Base nodes of n8n
15 lines (12 loc) • 412 B
text/typescript
/**
* Chargebee - Invoice Resource
* Re-exports all operation types for this resource.
*/
import type { ChargebeeV1InvoiceListNode } from './operation_list';
import type { ChargebeeV1InvoicePdfUrlNode } from './operation_pdf_url';
export * from './operation_list';
export * from './operation_pdf_url';
export type ChargebeeV1InvoiceNode =
| ChargebeeV1InvoiceListNode
| ChargebeeV1InvoicePdfUrlNode
;