UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

24 lines (21 loc) 832 B
/** * Slack - User Resource * Re-exports all operation types for this resource. */ import type { SlackV21UserGetAllNode } from './operation_get_all'; import type { SlackV21UserGetPresenceNode } from './operation_get_presence'; import type { SlackV21UserGetProfileNode } from './operation_get_profile'; import type { SlackV21UserInfoNode } from './operation_info'; import type { SlackV21UserUpdateProfileNode } 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 SlackV21UserNode = | SlackV21UserGetAllNode | SlackV21UserGetPresenceNode | SlackV21UserGetProfileNode | SlackV21UserInfoNode | SlackV21UserUpdateProfileNode ;