This commit is contained in:
Megghy
2023-10-19 11:48:52 +08:00
parent eb8df943e3
commit 20a086cfb5
4 changed files with 210 additions and 3 deletions

View File

@@ -124,8 +124,18 @@ export interface LotteryUserCardInfo {
isGuard: boolean
isCharge: boolean
}
export interface ScheduleWeekInfo {
year: number
week: number
days: ScheduleDayInfo[]
}
export interface ScheduleDayInfo {
title: string
tag: string
time: number
}
export enum ThemeType {
Auto = 'auto',
Light = 'light',
Dark = 'dark',
}
}