rhombic
Version:
SQL parsing, lineage extraction and manipulation
12 lines • 309 B
TypeScript
/**
* Insert a piece of text in a multiline sql statement.
*
* @param sql initial sql
* @param input text to insert
* @param location
*/
export declare const insertText: (sql: string, input: string, location: {
line: number;
column: number;
}) => string;
//# sourceMappingURL=insertText.d.ts.map