/** * Harvest - Project Resource * Re-exports all operation types for this resource. */ import type { HarvestV1ProjectCreateNode } from './operation_create'; import type { HarvestV1ProjectDeleteNode } from './operation_delete'; import type { HarvestV1ProjectGetNode } from './operation_get'; import type { HarvestV1ProjectGetAllNode } from './operation_get_all'; import type { HarvestV1ProjectUpdateNode } 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 HarvestV1ProjectNode = | HarvestV1ProjectCreateNode | HarvestV1ProjectDeleteNode | HarvestV1ProjectGetNode | HarvestV1ProjectGetAllNode | HarvestV1ProjectUpdateNode ;