n8n-nodes-base
Version:
Base nodes of n8n
18 lines (15 loc) • 518 B
text/typescript
/**
* Slack - Reaction Resource
* Re-exports all operation types for this resource.
*/
import type { SlackV24ReactionAddNode } from './operation_add';
import type { SlackV24ReactionGetNode } from './operation_get';
import type { SlackV24ReactionRemoveNode } from './operation_remove';
export * from './operation_add';
export * from './operation_get';
export * from './operation_remove';
export type SlackV24ReactionNode =
| SlackV24ReactionAddNode
| SlackV24ReactionGetNode
| SlackV24ReactionRemoveNode
;