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) 290 B
import { Lexeme } from '../models/Lexeme'; import { CheckpointStatement } from '../models/DDLStatements'; export declare class CheckpointStatementParser { static parseFromLexeme(lexemes: Lexeme[], index: number): { value: CheckpointStatement; newIndex: number; }; }