Type alias IapApiResponse<t>

IapApiResponse<t>: Promise<t | {
    cause: reason_with_details;
    kind: "connectionError";
} | {
    cause: reason_with_details;
    kind: "badRequest";
} | {
    cause: reason_with_details;
    kind: "accessDenied";
} | {
    cause: reason_with_details;
    kind: "iapServerError";
}>

Type Parameters

  • t

Generated using TypeDoc