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

    Interface UseGespenstTerminalResult

    Reactive values returned by useGespenstTerminal.

    interface UseGespenstTerminalResult {
        container: Ref<HTMLElement | null>;
        terminal: ShallowRef<BrowserTerminal | null>;
    }
    Index
    container: Ref<HTMLElement | null>

    Assign this ref to the DOM element that should host the terminal.

    terminal: ShallowRef<BrowserTerminal | null>

    Active terminal instance, or null before mount and after unmount.