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

import type { SlackV23MessageDeleteNode } from './operation_delete';
import type { SlackV23MessageGetPermalinkNode } from './operation_get_permalink';
import type { SlackV23MessagePostNode } from './operation_post';
import type { SlackV23MessageSearchNode } from './operation_search';
import type { SlackV23MessageSendAndWaitNode } from './operation_send_and_wait';
import type { SlackV23MessageUpdateNode } from './operation_update';

export * from './operation_delete';
export * from './operation_get_permalink';
export * from './operation_post';
export * from './operation_search';
export * from './operation_send_and_wait';
export * from './operation_update';

export type SlackV23MessageNode =
  | SlackV23MessageDeleteNode
  | SlackV23MessageGetPermalinkNode
  | SlackV23MessagePostNode
  | SlackV23MessageSearchNode
  | SlackV23MessageSendAndWaitNode
  | SlackV23MessageUpdateNode
  ;