n8n-nodes-base
Version:
Base nodes of n8n
24 lines (21 loc) • 807 B
text/typescript
/**
* Harvest - Expense Resource
* Re-exports all operation types for this resource.
*/
import type { HarvestV1ExpenseCreateNode } from './operation_create';
import type { HarvestV1ExpenseDeleteNode } from './operation_delete';
import type { HarvestV1ExpenseGetNode } from './operation_get';
import type { HarvestV1ExpenseGetAllNode } from './operation_get_all';
import type { HarvestV1ExpenseUpdateNode } from './operation_update';
export * from './operation_create';
export * from './operation_delete';
export * from './operation_get';
export * from './operation_get_all';
export * from './operation_update';
export type HarvestV1ExpenseNode =
| HarvestV1ExpenseCreateNode
| HarvestV1ExpenseDeleteNode
| HarvestV1ExpenseGetNode
| HarvestV1ExpenseGetAllNode
| HarvestV1ExpenseUpdateNode
;