n8n-nodes-base
Version:
Base nodes of n8n
24 lines (21 loc) • 832 B
text/typescript
/**
* Slack - User Resource
* Re-exports all operation types for this resource.
*/
import type { SlackV22UserGetAllNode } from './operation_get_all';
import type { SlackV22UserGetPresenceNode } from './operation_get_presence';
import type { SlackV22UserGetProfileNode } from './operation_get_profile';
import type { SlackV22UserInfoNode } from './operation_info';
import type { SlackV22UserUpdateProfileNode } from './operation_update_profile';
export * from './operation_get_all';
export * from './operation_get_presence';
export * from './operation_get_profile';
export * from './operation_info';
export * from './operation_update_profile';
export type SlackV22UserNode =
| SlackV22UserGetAllNode
| SlackV22UserGetPresenceNode
| SlackV22UserGetProfileNode
| SlackV22UserInfoNode
| SlackV22UserUpdateProfileNode
;