/**
 * Slack - User Resource
 * Re-exports all operation types for this resource.
 */

import type { SlackV2UserGetAllNode } from './operation_get_all';
import type { SlackV2UserGetPresenceNode } from './operation_get_presence';
import type { SlackV2UserGetProfileNode } from './operation_get_profile';
import type { SlackV2UserInfoNode } from './operation_info';
import type { SlackV2UserUpdateProfileNode } 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 SlackV2UserNode =
  | SlackV2UserGetAllNode
  | SlackV2UserGetPresenceNode
  | SlackV2UserGetProfileNode
  | SlackV2UserInfoNode
  | SlackV2UserUpdateProfileNode
  ;