Interface ICallResponse

    interface ICallResponse {
        blob: (() => Promise<Blob>);
        json: (() => Promise<any>);
        status?: number;
    }

    Properties

    Properties

    blob: (() => Promise<Blob>)
    json: (() => Promise<any>)
    status?: number

    Generated using TypeDoc and TypeDoc Airthium Plugin