n8n-nodes-base
Version:
Base nodes of n8n
18 lines (15 loc) • 493 B
text/typescript
/**
* Slack - File Resource
* Re-exports all operation types for this resource.
*/
import type { SlackV2FileGetNode } from './operation_get';
import type { SlackV2FileGetAllNode } from './operation_get_all';
import type { SlackV2FileUploadNode } from './operation_upload';
export * from './operation_get';
export * from './operation_get_all';
export * from './operation_upload';
export type SlackV2FileNode =
| SlackV2FileGetNode
| SlackV2FileGetAllNode
| SlackV2FileUploadNode
;