UNPKG

sql-formatter

Version:

Format whitespace in a SQL query to make it more readable

11 lines (10 loc) 295 B
import { RegExpLike } from './TokenizerEngine.js'; /** * An object mimicking a regular expression, * for matching nested block-comments. */ export declare class NestedComment implements RegExpLike { lastIndex: number; exec(input: string): string[] | null; private matchSection; }