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) 312 B
import { WindowsClause } from "../models/Clause"; import { Lexeme } from "../models/Lexeme"; export declare class WindowClauseParser { static parse(query: string): WindowsClause; static parseFromLexeme(lexemes: Lexeme[], index: number): { value: WindowsClause; newIndex: number; }; }