Skip to content

Commit

Permalink
Added transaction type
Browse files Browse the repository at this point in the history
  • Loading branch information
ad956 committed Jun 5, 2024
1 parent 62bae2b commit 97a8a8a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,3 +131,14 @@ export interface UserLog {
ip: string;
location: string;
}

export interface Transaction {
transaction_id: string | null;
timestamp: Date;
patient_id: string;
hospital_id: string;
disease: string;
description: string;
amount: string;
status: string;
}

0 comments on commit 97a8a8a

Please sign in to comment.