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 { SlackV24UserGetAllNode } from './operation_get_all';
import type { SlackV24UserGetPresenceNode } from './operation_get_presence';
import type { SlackV24UserGetProfileNode } from './operation_get_profile';
import type { SlackV24UserInfoNode } from './operation_info';
import type { SlackV24UserUpdateProfileNode } 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 SlackV24UserNode =
| SlackV24UserGetAllNode
| SlackV24UserGetPresenceNode
| SlackV24UserGetProfileNode
| SlackV24UserInfoNode
| SlackV24UserUpdateProfileNode
;