11 lines
255 B
TypeScript
11 lines
255 B
TypeScript
/**
|
|
* ViewData for LeagueScoringConfig
|
|
* This is the JSON-serializable input for the Template.
|
|
*/
|
|
export interface LeagueScoringConfigViewData {
|
|
gameName: string;
|
|
scoringPresetName?: string;
|
|
dropPolicySummary?: string;
|
|
championships?: any[];
|
|
}
|