6 lines
87 B
TypeScript
6 lines
87 B
TypeScript
export type Donation = {
|
|
id: number;
|
|
donor: string;
|
|
paidAmount: number;
|
|
};
|