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