UNPKG

sql-formatter

Version:

Format whitespace in a SQL query to make it more readable

10 lines (9 loc) 313 B
import { FormatOptions } from '../FormatOptions.js'; /** * Creates a string to use for one step of indentation. */ export declare function indentString(cfg: FormatOptions): string; /** * True when indentStyle is one of the tabular ones. */ export declare function isTabularStyle(cfg: FormatOptions): boolean;