@battle-racing/br-common-lib
Version:
Common library for all Battle Racing Repositorios
12 lines (11 loc) • 324 B
TypeScript
export declare const PAYMENT_PROVIDERS: {
readonly STRIPE: "stripe";
readonly PAYPAL: "paypal";
};
export declare const PAYMENT_STATUSES: {
readonly PENDING: "pending";
readonly COMPLETED: "completed";
readonly FAILED: "failed";
readonly REFUNDED: "refunded";
readonly CANCELLED: "cancelled";
};