view data fixes
This commit is contained in:
18
apps/website/lib/view-data/RulebookViewData.ts
Normal file
18
apps/website/lib/view-data/RulebookViewData.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
import { ViewData } from "../contracts/view-data/ViewData";
|
||||
|
||||
|
||||
export interface RulebookViewData extends ViewData {
|
||||
leagueId: string;
|
||||
gameName: string;
|
||||
scoringPresetName: string;
|
||||
championshipsCount: number;
|
||||
sessionTypes: string;
|
||||
dropPolicySummary: string;
|
||||
hasActiveDropPolicy: boolean;
|
||||
positionPoints: Array<{
|
||||
position: number;
|
||||
points: number;
|
||||
}>;
|
||||
bonusPoints: string[];
|
||||
hasBonusPoints: boolean;
|
||||
}
|
||||
Reference in New Issue
Block a user