@get-milano/react 2.1.0
    Preparing search index...

    Interface MilanoQuickHostProps

    interface MilanoQuickHostProps {
        context?: Readonly<Record<string, MilanoValue>>;
        document: string | Uint8Array<ArrayBufferLike>;
        failure?: (error: unknown) => ReactNode;
        loading?: ReactNode;
        observer?: MilanoObserver | null;
        onAction?: MilanoActionHandler | null;
        renderers: Readonly<Record<string, MilanoRenderer>>;
        state?: Readonly<Record<string, MilanoValue>>;
        userInteractionObserver?: MilanoUserInteractionObserver | null;
        vocabulary: string;
    }
    Index
    context?: Readonly<Record<string, MilanoValue>>

    Stable across renders: a new object rebuilds the view.

    document: string | Uint8Array<ArrayBufferLike>

    The document, as text or raw bytes. Stable across renders.

    failure?: (error: unknown) => ReactNode
    loading?: ReactNode
    observer?: MilanoObserver | null

    Free to be an inline object: it is read through a ref.

    onAction?: MilanoActionHandler | null

    Free to be an inline closure: it is read through a ref.

    renderers: Readonly<Record<string, MilanoRenderer>>

    Component type to renderer; stable across renders.

    state?: Readonly<Record<string, MilanoValue>>

    Overrides for declared state; anything omitted is synthesized. Stable across renders: a new object rebuilds the view, and rebuilding starts the document over from its initial state.

    userInteractionObserver?: MilanoUserInteractionObserver | null

    Free to be an inline object: it is read through a ref.

    vocabulary: string

    The vocabulary artifact, as JSON text. Stable across renders.