11 lines
204 B
TypeScript
11 lines
204 B
TypeScript
export declare type ResponseTrackScan = {
|
|
track: string;
|
|
card: string;
|
|
station: string;
|
|
timestamp: string;
|
|
id: number;
|
|
runner: string;
|
|
valid: boolean;
|
|
distance: number;
|
|
};
|