n8n-nodes-base
Version:
Base nodes of n8n
15 lines (12 loc) • 383 B
text/typescript
/**
* Coda - Formula Resource
* Re-exports all operation types for this resource.
*/
import type { CodaV11FormulaGetNode } from './operation_get';
import type { CodaV11FormulaGetAllNode } from './operation_get_all';
export * from './operation_get';
export * from './operation_get_all';
export type CodaV11FormulaNode =
| CodaV11FormulaGetNode
| CodaV11FormulaGetAllNode
;