16 lines
431 B
TypeScript
16 lines
431 B
TypeScript
import type { LeagueConfigFormModel } from '../types/LeagueConfigFormModel';
|
|
import type { LeagueScoringPresetViewData } from './LeagueScoringPresetViewData';
|
|
|
|
/**
|
|
* ViewData for LeagueScoringSection
|
|
*/
|
|
export interface LeagueScoringSectionViewData {
|
|
form: LeagueConfigFormModel;
|
|
presets: LeagueScoringPresetViewData[];
|
|
options?: {
|
|
readOnly?: boolean;
|
|
patternOnly?: boolean;
|
|
championshipsOnly?: boolean;
|
|
};
|
|
}
|