Anchorage API reference
    Preparing search index...

    The injected stream option: a transport plus a ticket() thunk (both from the host).

    interface ApprovalStreamOption {
        ticket: () => Promise<{ ticket: string; url: string }>;
        transport: StreamTransport;
    }
    Index

    Properties

    Properties

    ticket: () => Promise<{ ticket: string; url: string }>

    Mints a fresh addressing ticket; the socket URL is url + ticket.

    transport: StreamTransport