8 lines
142 B
TypeScript
8 lines
142 B
TypeScript
export type RunnerGroup = {
|
|
id: number;
|
|
name: string;
|
|
contact?: any;
|
|
distance: number;
|
|
distanceDonationAmount: number;
|
|
};
|