UNPKG

rawsql-ts

Version:

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

9 lines (8 loc) 278 B
import { Lexeme } from '../models/Lexeme'; import { VacuumStatement } from '../models/DDLStatements'; export declare class VacuumStatementParser { static parseFromLexeme(lexemes: Lexeme[], index: number): { value: VacuumStatement; newIndex: number; }; }