| 12 | export type LogicalOperatorNewline = 'before' | 'after'; |
| 13 | |
| 14 | export interface FormatOptions { |
| 15 | tabWidth: number; |
| 16 | useTabs: boolean; |
| 17 | keywordCase: KeywordCase; |
| 18 | identifierCase: IdentifierCase; |
| 19 | dataTypeCase: DataTypeCase; |
| 20 | functionCase: FunctionCase; |
| 21 | indentStyle: IndentStyle; |
| 22 | logicalOperatorNewline: LogicalOperatorNewline; |
| 23 | expressionWidth: number; |
| 24 | linesBetweenQueries: number; |
| 25 | denseOperators: boolean; |
| 26 | newlineBeforeSemicolon: boolean; |
| 27 | params?: ParamItems | string[]; |
| 28 | paramTypes?: ParamTypes; |
| 29 | } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…