gespenst API - v0.1.0
    Preparing search index...

    Interface ClipboardWriteRequest

    Clipboard write requested by terminal output.

    interface ClipboardWriteRequest {
        canRemember: boolean;
        contents: readonly ClipboardContent[];
        granted: boolean;
        location: ClipboardLocation;
        name: string;
    }
    Index
    canRemember: boolean

    Whether the requesting application supplied a grant that could be remembered.

    contents: readonly ClipboardContent[]

    Available MIME representations.

    granted: boolean

    Whether Ghostty has an existing session grant for this request.

    Clipboard target requested by the application.

    name: string

    Human-readable name supplied by the requesting terminal application.