Files
n8n-nodes-gwezz-changdunovel/node_modules/@n8n/tournament/dist/ExpressionSplitter.d.ts
2025-10-26 23:10:15 +08:00

14 lines
455 B
TypeScript

export interface ExpressionText {
type: 'text';
text: string;
}
export interface ExpressionCode {
type: 'code';
text: string;
hasClosingBrackets: boolean;
}
export type ExpressionChunk = ExpressionCode | ExpressionText;
export declare const escapeCode: (text: string) => string;
export declare const splitExpression: (expression: string) => ExpressionChunk[];
export declare const joinExpression: (parts: ExpressionChunk[]) => string;