@quack-protocol/sdk - v0.1.0
    Preparing search index...

    Interface ParsedQuackUri

    Parsed connection string with the HTTP base URL used for transport.

    interface ParsedQuackUri {
        baseUrl: string;
        host: string;
        port: number;
        ssl: boolean;
    }
    Index

    Properties

    Properties

    baseUrl: string

    HTTP or HTTPS base URL without the /quack endpoint suffix.

    host: string

    Host parsed from the connection string.

    port: number

    Port parsed from the connection string, defaulting to 9494.

    ssl: boolean

    Whether the transport uses HTTPS.