UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

24 lines (21 loc) 819 B
/** * Harvest - Estimate Resource * Re-exports all operation types for this resource. */ import type { HarvestV1EstimateCreateNode } from './operation_create'; import type { HarvestV1EstimateDeleteNode } from './operation_delete'; import type { HarvestV1EstimateGetNode } from './operation_get'; import type { HarvestV1EstimateGetAllNode } from './operation_get_all'; import type { HarvestV1EstimateUpdateNode } 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 HarvestV1EstimateNode = | HarvestV1EstimateCreateNode | HarvestV1EstimateDeleteNode | HarvestV1EstimateGetNode | HarvestV1EstimateGetAllNode | HarvestV1EstimateUpdateNode ;