UNPKG

rawsql-ts

Version:

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

10 lines (9 loc) 301 B
import { WithClause } from "../models/Clause"; import { Lexeme } from "../models/Lexeme"; export declare class WithClauseParser { static parse(query: string): WithClause; static parseFromLexeme(lexemes: Lexeme[], index: number): { value: WithClause; newIndex: number; }; }