UNPKG

rawsql-ts

Version:

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

7 lines (6 loc) 281 B
import type { Lexeme } from "../models/Lexeme"; /** * Join lexeme values into a whitespace-normalized SQL fragment. * Keeps punctuation tight while preserving spacing elsewhere. */ export declare function joinLexemeValues(lexemes: Lexeme[], start: number, end: number): string;