UNPKG

rawsql-ts

Version:

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

7 lines (6 loc) 234 B
import { Lexeme } from "../../models/Lexeme"; export interface ExtractedLexemeComments { before: string[]; after: string[]; } export declare function extractLexemeComments(lexeme: Lexeme | undefined): ExtractedLexemeComments;