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

    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