UNPKG

sql-formatter

Version:

Format whitespace in a SQL query to make it more readable

8 lines (7 loc) 278 B
import { SqlLanguage, FormatFn } from '../../src/sqlFormatter'; declare type Options = { without?: string[]; additionally?: string[]; }; export default function supportsJoin(language: SqlLanguage, format: FormatFn, { without, additionally }?: Options): void; export {};