13 lines
305 B
TypeScript
13 lines
305 B
TypeScript
/**
|
|
* ViewData for ProfileOverview
|
|
* This is the JSON-serializable input for the Template.
|
|
*/
|
|
export interface ProfileOverviewViewData {
|
|
currentDriver: any | null;
|
|
stats: any | null;
|
|
finishDistribution: any | null;
|
|
teamMemberships: any[];
|
|
socialSummary: any;
|
|
extendedProfile: any | null;
|
|
}
|