@sahabaplus/moyasar
Version:
A comprehensive TypeScript SDK for integrating with the Moyasar payment gateway
13 lines • 559 B
TypeScript
export declare const InvoiceStatus: {
readonly INITIATED: "initiated";
readonly PAID: "paid";
readonly FAILED: "failed";
readonly REFUNDED: "refunded";
readonly CANCELED: "canceled";
readonly ON_HOLD: "on_hold";
readonly EXPIRED: "expired";
readonly VOIDED: "voided";
};
export type InvoiceStatus = (typeof InvoiceStatus)[keyof typeof InvoiceStatus];
export declare const ALL_INVOICE_STATUSES: ("initiated" | "paid" | "failed" | "refunded" | "voided" | "canceled" | "on_hold" | "expired")[];
//# sourceMappingURL=enums.d.ts.map