Interface ICallResponse

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

    Properties

    Properties

    blob: (() => Promise<Blob>)

    Type declaration

      • (): Promise<Blob>
      • Returns Promise<Blob>

    json: (() => Promise<any>)

    Type declaration

      • (): Promise<any>
      • Returns Promise<any>

    status?: number

    Generated using TypeDoc and TypeDoc Airthium Plugin