6 lines
97 B
TypeScript
6 lines
97 B
TypeScript
export interface Transaction {
|
|
id: string;
|
|
type: string;
|
|
amount: number;
|
|
date: string;
|
|
}
|