12 lines
291 B
TypeScript
12 lines
291 B
TypeScript
import type { StandingEntryViewData } from './StandingEntryViewData';
|
|
|
|
/**
|
|
* ViewData for LeagueStandings
|
|
* This is the JSON-serializable input for the Template.
|
|
*/
|
|
export interface LeagueStandingsViewData {
|
|
standings: StandingEntryViewData[];
|
|
drivers: any[];
|
|
memberships: any[];
|
|
}
|