rawsql-ts
Version:
[beta]High-performance SQL parser and AST analyzer written in TypeScript. Provides fast parsing and advanced transformation capabilities.
12 lines (11 loc) • 342 B
TypeScript
import { DeleteClause } from "../models/Clause";
import { Lexeme } from "../models/Lexeme";
/**
* Parses the target section of a DELETE statement ("DELETE FROM ...").
*/
export declare class DeleteClauseParser {
static parseFromLexeme(lexemes: Lexeme[], index: number): {
value: DeleteClause;
newIndex: number;
};
}