tempnumber-client
Version:
temp-number.org SMS Typescript client
19 lines (18 loc) • 403 B
TypeScript
export declare type StripePaymentIntentType = {
id: string;
clientSecret: string;
publicKey: string;
};
export declare enum osType {
'ios' = "ios",
'android' = "android",
'web' = "web"
}
export declare enum paymentStatus {
'paid' = "paid",
'review' = "review",
'refunded' = "refunded"
}
export declare type PaymentStatusResponseType = {
status: paymentStatus;
};