8 lines
146 B
TypeScript
8 lines
146 B
TypeScript
export type DistanceDonation = {
|
|
runner: string;
|
|
amountPerDistance: number;
|
|
id: number;
|
|
donor: string;
|
|
paidAmount: number;
|
|
};
|