feat: make payment plans dynamic

This commit is contained in:
Ali BARIN
2023-03-20 21:46:20 +00:00
committed by Faruk AYDIN
parent f1358c7ad1
commit 3598d43938
4 changed files with 46 additions and 11 deletions

View File

@@ -321,6 +321,13 @@ export type IGlobalVariable = {
setActionItem?: (actionItem: IActionItem) => void;
};
export type TPaymentPlan = {
price: string;
name: string;
limit: string;
productId: string;
}
declare module 'axios' {
interface AxiosResponse {
httpError?: IJSONObject;
@@ -335,4 +342,3 @@ export interface IRequest extends Request {
rawBody?: Buffer;
currentUser?: IUser;
}