11 lines
191 B
TypeScript
11 lines
191 B
TypeScript
/* istanbul ignore file */
|
|
/* tslint:disable */
|
|
/* eslint-disable */
|
|
|
|
export type DistanceDonation = {
|
|
runner: string;
|
|
amountPerDistance: number;
|
|
id: number;
|
|
donor: string;
|
|
}
|