UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

21 lines (18 loc) 642 B
/** * Twist Node - Version 1 * Re-exports all discriminator combinations. */ import type { TwistV1ChannelNode } from './resource_channel'; import type { TwistV1CommentNode } from './resource_comment'; import type { TwistV1MessageConversationNode } from './resource_message_conversation'; import type { TwistV1ThreadNode } from './resource_thread'; export * from './resource_channel'; export * from './resource_comment'; export * from './resource_message_conversation'; export * from './resource_thread'; export type TwistV1Node = | TwistV1ChannelNode | TwistV1CommentNode | TwistV1MessageConversationNode | TwistV1ThreadNode ;