10 lines
199 B
TypeScript
10 lines
199 B
TypeScript
/**
|
|
* ViewData for RaceWithSOF
|
|
* This is the JSON-serializable input for the Template.
|
|
*/
|
|
export interface RaceWithSOFViewData {
|
|
id: string;
|
|
track: string;
|
|
strengthOfField: number | null;
|
|
}
|