UNPKG

rawsql-ts

Version:

[beta]High-performance SQL parser and AST analyzer written in TypeScript. Provides fast parsing and advanced transformation capabilities.

9 lines 255 B
// Composite pattern for SQL lines export class SqlOutputToken { constructor(type, text, innerTokens = []) { this.type = type; this.text = text; this.innerTokens = innerTokens; } } //# sourceMappingURL=SqlOutputToken.js.map