7 lines
126 B
TypeScript
7 lines
126 B
TypeScript
export interface Transaction {
|
|
id: string;
|
|
partner: string;
|
|
amount: number;
|
|
date: Date;
|
|
type: 'Sent' | 'Received';
|
|
} |