VS Code API
    Preparing search index...

    Interface CustomDocumentOpenContext

    Additional information about the opening custom document.

    interface CustomDocumentOpenContext {
        backupId: string | undefined;
        untitledDocumentData: Uint8Array<ArrayBufferLike> | undefined;
    }
    Index

    Properties

    backupId: string | undefined

    The id of the backup to restore the document from or undefined if there is no backup.

    If this is provided, your extension should restore the editor from the backup instead of reading the file from the user's workspace.

    untitledDocumentData: Uint8Array<ArrayBufferLike> | undefined

    If the URI is an untitled file, this will be populated with the byte data of that file

    If this is provided, your extension should utilize this byte data rather than executing fs APIs on the URI passed in