n8n-nodes-base
Version:
Base nodes of n8n
15 lines (12 loc) • 406 B
text/typescript
/**
* Asana - TaskProject Resource
* Re-exports all operation types for this resource.
*/
import type { AsanaV1TaskProjectAddNode } from './operation_add';
import type { AsanaV1TaskProjectRemoveNode } from './operation_remove';
export * from './operation_add';
export * from './operation_remove';
export type AsanaV1TaskProjectNode =
| AsanaV1TaskProjectAddNode
| AsanaV1TaskProjectRemoveNode
;