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

    Interface TerminalEventMap

    Event payloads emitted by the headless terminal core.

    interface TerminalEventMap {
        bell: undefined;
        clipboardWrite: ClipboardWriteRequest;
        cwd: string;
        error: Error;
        input: TerminalInputEvent;
        notification: TerminalNotification;
        progress: TerminalProgressReport;
        render: RenderFrame;
        title: string;
    }
    Index
    bell: undefined

    Bell notification.

    clipboardWrite: ClipboardWriteRequest

    Clipboard write request.

    cwd: string

    Current working directory reported by the shell.

    error: Error

    Asynchronous terminal failure.

    Bytes to send to the PTY.

    notification: TerminalNotification

    Desktop notification request.

    Progress report.

    render: RenderFrame

    Incremental render frame.

    title: string

    Current terminal title.