prettier-sql
Version:
Format whitespace in a SQL query to make it more readable
22 lines (21 loc) • 800 B
TypeScript
import Formatter from '../core/Formatter';
import Tokenizer from '../core/Tokenizer';
import type { StringPatternType } from '../core/regexFactory';
export default class TSqlFormatter extends Formatter {
static reservedCommands: string[];
static reservedBinaryCommands: string[];
static reservedDependentClauses: string[];
static reservedLogicalOperators: string[];
static reservedKeywords: string[];
static stringTypes: StringPatternType[];
static blockStart: string[];
static blockEnd: string[];
static indexedPlaceholderTypes: never[];
static namedPlaceholderTypes: string[];
static lineCommentTypes: string[];
static specialWordChars: {
any: string;
};
static operators: string[];
tokenizer(): Tokenizer;
}