/** * Slack - Reaction Resource * Re-exports all operation types for this resource. */ import type { SlackV2ReactionAddNode } from './operation_add'; import type { SlackV2ReactionGetNode } from './operation_get'; import type { SlackV2ReactionRemoveNode } from './operation_remove'; export * from './operation_add'; export * from './operation_get'; export * from './operation_remove'; export type SlackV2ReactionNode = | SlackV2ReactionAddNode | SlackV2ReactionGetNode | SlackV2ReactionRemoveNode ;