interface FormatOptions {
    indent?: string;
    newline?: string;
}

Properties

Properties

indent?: string

A string used for code indentation if desired. Usually a tab character or a number of spaces.

newline?: string

A string used for line separation. Usually a newline character ("\n");