8 lines
152 B
TypeScript
8 lines
152 B
TypeScript
/**
|
|
* ViewData for RaceStats
|
|
* This is the JSON-serializable input for the Template.
|
|
*/
|
|
export interface RaceStatsViewData {
|
|
totalRaces: number;
|
|
}
|