n8n-nodes-base
Version:
Base nodes of n8n
18 lines (15 loc) • 569 B
text/typescript
/**
* Discourse - Category Resource
* Re-exports all operation types for this resource.
*/
import type { DiscourseV1CategoryCreateNode } from './operation_create';
import type { DiscourseV1CategoryGetAllNode } from './operation_get_all';
import type { DiscourseV1CategoryUpdateNode } from './operation_update';
export * from './operation_create';
export * from './operation_get_all';
export * from './operation_update';
export type DiscourseV1CategoryNode =
| DiscourseV1CategoryCreateNode
| DiscourseV1CategoryGetAllNode
| DiscourseV1CategoryUpdateNode
;