VS Code API
    Preparing search index...

    Interface QuickDiffProvider

    A quick diff provider provides a uri to the original state of a modified resource. The editor will use this information to render ad'hoc diffs within the text.

    interface QuickDiffProvider {
        provideOriginalResource?(
            uri: Uri,
            token: CancellationToken,
        ): ProviderResult<Uri>;
    }
    Index

    Methods