added transaction type

This commit is contained in:
Mamalizz
2025-04-16 20:14:46 +03:30
parent 46fbc509fe
commit b3d4b60d6f
+14
View File
@@ -290,4 +290,18 @@ declare global {
| "BAHAMTA"
| "BMI";
};
type Transaction = {
detail: string;
bank_result?: {
status: "succeeded" | "canceled" | "pending";
bank_type: string;
tracking_code: string;
amount: string | null;
created_at: string;
response_result: string | null;
reference_number: string | null;
status_detail: string | null;
};
};
}