FormattingOptions typedef

FormattingOptions = ({String indent, String newline, int subClauseIndent, bool uppercaseKeywords})

Formatting options for the SQL formatter.

Implementation

typedef FormattingOptions = ({
  String newline,
  String indent,
  bool uppercaseKeywords,
  int subClauseIndent
});