Interface DocumentOnTypeFormattingOptions

Provider options for a DocumentOnTypeFormattingRequest.

interface DocumentOnTypeFormattingOptions {
    firstTriggerCharacter: string;
    moreTriggerCharacter?: string[];
}

Hierarchy (View Summary)

Properties

firstTriggerCharacter: string

A character on which formatting should be triggered, like {.

moreTriggerCharacter?: string[]

More trigger characters.