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