Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

IndentOptions

interface IndentOptions {
adjustMultilineComment?: boolean | undefined;
base?: number | undefined;
style?: string | undefined;
}

§Properties

§
adjustMultilineComment?: boolean | undefined
[src]

Adjust the indentation of multiline comments to keep asterisks vertically aligned. Default is false.

§
base?: number | undefined
[src]

Base indent level. Default is 0.

§
style?: string | undefined
[src]

Indent string. Default is 4 spaces (' ').