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

    Type Alias NesUserAction

    A user action (typing, cursor movement, etc.).

    type NesUserAction = {
        action: string;
        position: Position;
        timestampMs: number;
        uri: string;
    }
    Index

    Properties

    action: string

    The kind of action (e.g., "insertChar", "cursorMovement").

    position: Position

    The position where the action occurred.

    timestampMs: number

    Timestamp in milliseconds since epoch.

    uri: string

    The URI of the file where the action occurred.