n8n-nodes-base
Version:
Base nodes of n8n
18 lines (15 loc) • 506 B
text/typescript
/**
* Notion - Page Resource
* Re-exports all operation types for this resource.
*/
import type { NotionV22PageCreateNode } from './operation_create';
import type { NotionV22PageGetNode } from './operation_get';
import type { NotionV22PageSearchNode } from './operation_search';
export * from './operation_create';
export * from './operation_get';
export * from './operation_search';
export type NotionV22PageNode =
| NotionV22PageCreateNode
| NotionV22PageGetNode
| NotionV22PageSearchNode
;