Agent Client Protocol - v0.18.2
    Preparing search index...

    Type Alias NesOpenFile

    An open file in the editor.

    type NesOpenFile = {
        languageId: string;
        lastFocusedMs?: number | null;
        uri: string;
        visibleRange?: Range | null;
    }
    Index

    Properties

    languageId: string

    The language identifier.

    lastFocusedMs?: number | null

    Timestamp in milliseconds since epoch of when the file was last focused.

    uri: string

    The URI of the file.

    visibleRange?: Range | null

    The visible range in the editor, if any.