UNPKG

rawsql-ts

Version:

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

14 lines (13 loc) 410 B
import { AnalyzeStatement } from "../models/DDLStatements"; import { Lexeme } from "../models/Lexeme"; /** * Parses ANALYZE statements. */ export declare class AnalyzeStatementParser { static parse(sql: string): AnalyzeStatement; static parseFromLexeme(lexemes: Lexeme[], index: number): { value: AnalyzeStatement; newIndex: number; }; private static canStartQualifiedName; }