feat(wallet): implement wallet transactions table and filtering options ✨
This commit is contained in:
@@ -97,3 +97,16 @@ export interface NewPayment {
|
||||
number_of_months: number;
|
||||
amount: number;
|
||||
}
|
||||
|
||||
|
||||
export interface WalletTransaction {
|
||||
id: string;
|
||||
user: Pick<User, "id" | "id_card" | "mobile"> & {
|
||||
name: string;
|
||||
};
|
||||
amount: number;
|
||||
transaction_type: "DEBIT" | "CREDIT";
|
||||
description: string;
|
||||
reference_id: string;
|
||||
created_at: string;
|
||||
}
|
||||
Reference in New Issue
Block a user