feat: make invoices dynamic

This commit is contained in:
Ali BARIN
2023-03-27 08:22:24 +00:00
parent fd24dbee21
commit 372cdb10d6
5 changed files with 91 additions and 145 deletions

View File

@@ -368,6 +368,14 @@ type TBillingLinkCardAction = {
src: string;
}
type TInvoice = {
id: number
amount: number
currency: string
payout_date: string
receipt_url: string
}
declare module 'axios' {
interface AxiosResponse {
httpError?: IJSONObject;