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 { SlackV23UserGetAllNode } from './operation_get_all';
import type { SlackV23UserGetPresenceNode } from './operation_get_presence';
import type { SlackV23UserGetProfileNode } from './operation_get_profile';
import type { SlackV23UserInfoNode } from './operation_info';
import type { SlackV23UserUpdateProfileNode } 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 SlackV23UserNode =
| SlackV23UserGetAllNode
| SlackV23UserGetPresenceNode
| SlackV23UserGetProfileNode
| SlackV23UserInfoNode
| SlackV23UserUpdateProfileNode
;