We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bff058d commit 377b084Copy full SHA for 377b084
src/FormatOptions.ts
@@ -5,12 +5,9 @@ import { ParamTypes } from './lexer/TokenizerOptions.js';
5
export type IndentStyle = 'standard' | 'tabularLeft' | 'tabularRight';
6
7
export type KeywordCase = 'preserve' | 'upper' | 'lower';
8
-
9
-export type IdentifierCase = 'preserve' | 'upper' | 'lower';
10
11
-export type DataTypeCase = 'preserve' | 'upper' | 'lower';
12
13
-export type FunctionCase = 'preserve' | 'upper' | 'lower';
+export type IdentifierCase = KeywordCase;
+export type DataTypeCase = KeywordCase;
+export type FunctionCase = KeywordCase;
14
15
export type LogicalOperatorNewline = 'before' | 'after';
16
0 commit comments