19 lines
403 B
TypeScript
19 lines
403 B
TypeScript
import type { LeagueConfigFormModel } from '../types/LeagueConfigFormModel';
|
|
|
|
/**
|
|
* ViewData for LeagueSettings
|
|
* This is the JSON-serializable input for the Template.
|
|
*/
|
|
export interface LeagueSettingsViewData {
|
|
league: {
|
|
id: string;
|
|
name: string;
|
|
ownerId: string;
|
|
createdAt: string;
|
|
};
|
|
config: LeagueConfigFormModel;
|
|
presets: any[];
|
|
owner: any | null;
|
|
members: any[];
|
|
}
|