Files
n8n-nodes-strike/node_modules/n8n-workflow/dist/cjs/node-reference-parser-utils.d.ts
Martien 5605b9b49a Initial commit: n8n Strike API node
- Add Strike API credentials configuration
- Implement Strike node with 9 resources (Account, Balance, Currency Exchange, Deposit, Invoice, Payment, Payment Method, Payout, Rates)
- Add comprehensive operation descriptions for all resources
- Include CLAUDE.MD documentation
- Set up build configuration with TypeScript, ESLint, and Prettier

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-10 11:00:38 +01:00

20 lines
1.1 KiB
TypeScript

import type { INode } from './interfaces';
export declare function hasDotNotationBannedChar(nodeName: string): boolean;
export declare function backslashEscape(nodeName: string): string;
export declare function dollarEscape(nodeName: string): string;
export declare function applyAccessPatterns(expression: string, previousName: string, newName: string): string;
/**
* Extracts references to nodes in `nodeNames` from the nodes in `subGraph`.
*
* @returns an object with two keys:
* - nodes: Transformed copies of nodes in `subGraph`, ready for use in a sub-workflow
* - variables: A map from variable name in the sub-workflow to the replaced expression
*
* @throws if the startNodeName already exists in `nodeNames`
* @throws if `nodeNames` does not include all node names in `subGraph`
*/
export declare function extractReferencesInNodeExpressions(subGraph: INode[], nodeNames: string[], insertedStartName: string, graphInputNodeNames?: string[]): {
nodes: INode[];
variables: Map<string, string>;
};
//# sourceMappingURL=node-reference-parser-utils.d.ts.map