casino/frontend/src/app/model/Transaction.ts

6 lines
97 B
TypeScript

export interface Transaction {
id: string;
type: string;
amount: number;
date: string;
}