UNPKG

sql-formatter

Version:

Format whitespace in a SQL query to make it more readable

9 lines (8 loc) 226 B
/** * Determines line and column number of character index in source code. */ export declare function lineColFromIndex(source: string, index: number): LineCol; export interface LineCol { line: number; col: number; }