10 lines
194 B
TypeScript
10 lines
194 B
TypeScript
export declare type RunnerOrganization = {
|
|
address?: any;
|
|
key?: string;
|
|
distance: number;
|
|
distanceDonationAmount: number;
|
|
id: number;
|
|
name: string;
|
|
contact?: any;
|
|
};
|