Theia API Documentation v1.66.0
    Preparing search index...

    Interface DocumentFormattingEditProvider

    The document formatting provider interface defines the contract between extensions and the formatting-feature.

    interface DocumentFormattingEditProvider {
        provideDocumentFormattingEdits(
            document: TextDocument,
            options: FormattingOptions,
            token: undefined | CancellationToken,
        ): ProviderResult<undefined | TextEdit[]>;
    }
    Index

    Methods