n8n-nodes-base
Version:
Base nodes of n8n
60 lines (57 loc) • 2.43 kB
text/typescript
/**
* Slack - Channel Resource
* Re-exports all operation types for this resource.
*/
import type { SlackV23ChannelArchiveNode } from './operation_archive';
import type { SlackV23ChannelCloseNode } from './operation_close';
import type { SlackV23ChannelCreateNode } from './operation_create';
import type { SlackV23ChannelGetNode } from './operation_get';
import type { SlackV23ChannelGetAllNode } from './operation_get_all';
import type { SlackV23ChannelHistoryNode } from './operation_history';
import type { SlackV23ChannelInviteNode } from './operation_invite';
import type { SlackV23ChannelJoinNode } from './operation_join';
import type { SlackV23ChannelKickNode } from './operation_kick';
import type { SlackV23ChannelLeaveNode } from './operation_leave';
import type { SlackV23ChannelMemberNode } from './operation_member';
import type { SlackV23ChannelOpenNode } from './operation_open';
import type { SlackV23ChannelRenameNode } from './operation_rename';
import type { SlackV23ChannelRepliesNode } from './operation_replies';
import type { SlackV23ChannelSetPurposeNode } from './operation_set_purpose';
import type { SlackV23ChannelSetTopicNode } from './operation_set_topic';
import type { SlackV23ChannelUnarchiveNode } from './operation_unarchive';
export * from './operation_archive';
export * from './operation_close';
export * from './operation_create';
export * from './operation_get';
export * from './operation_get_all';
export * from './operation_history';
export * from './operation_invite';
export * from './operation_join';
export * from './operation_kick';
export * from './operation_leave';
export * from './operation_member';
export * from './operation_open';
export * from './operation_rename';
export * from './operation_replies';
export * from './operation_set_purpose';
export * from './operation_set_topic';
export * from './operation_unarchive';
export type SlackV23ChannelNode =
| SlackV23ChannelArchiveNode
| SlackV23ChannelCloseNode
| SlackV23ChannelCreateNode
| SlackV23ChannelGetNode
| SlackV23ChannelGetAllNode
| SlackV23ChannelHistoryNode
| SlackV23ChannelInviteNode
| SlackV23ChannelJoinNode
| SlackV23ChannelKickNode
| SlackV23ChannelLeaveNode
| SlackV23ChannelMemberNode
| SlackV23ChannelOpenNode
| SlackV23ChannelRenameNode
| SlackV23ChannelRepliesNode
| SlackV23ChannelSetPurposeNode
| SlackV23ChannelSetTopicNode
| SlackV23ChannelUnarchiveNode
;