12 lines
261 B
TypeScript
12 lines
261 B
TypeScript
import type { RunnerGroup } from './RunnerGroup';
|
|
export declare type ResponseRunner = {
|
|
distance: number;
|
|
group: RunnerGroup;
|
|
id: number;
|
|
firstname: string;
|
|
middlename: string;
|
|
lastname: string;
|
|
phone: string;
|
|
email: string;
|
|
};
|