UNPKG

@n8n-plus/n8n-plus

Version:

n8n Workflow Automation Tool (plus edition)

9 lines (8 loc) 316 B
export type TextYieldFn = (text: string) => void; export type TextEndFn = () => void; export declare const INTERNAL_THREAD_ID_SYMBOL: unique symbol; export interface InternalThread { [INTERNAL_THREAD_ID_SYMBOL]: boolean; id: string; } export declare const toInternalThreadId: (id: string) => InternalThread;