dad182fe12
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
40 lines
605 B
TypeScript
40 lines
605 B
TypeScript
export interface DayUrls {
|
|
monday: string
|
|
tuesday: string
|
|
wednesday: string
|
|
thursday: string
|
|
friday: string
|
|
}
|
|
|
|
export interface TelegramConfig {
|
|
botToken: string
|
|
chatId: string
|
|
}
|
|
|
|
export interface Config {
|
|
days: DayUrls
|
|
devMode: boolean
|
|
silent: boolean
|
|
overrideTime: string | null
|
|
telegram: TelegramConfig
|
|
}
|
|
|
|
const config: Config = {
|
|
days: {
|
|
monday: "",
|
|
tuesday: "",
|
|
wednesday: "",
|
|
thursday: "",
|
|
friday: "",
|
|
},
|
|
devMode: false,
|
|
silent: false,
|
|
overrideTime: null,
|
|
telegram: {
|
|
botToken: "",
|
|
chatId: "",
|
|
},
|
|
}
|
|
|
|
export default config
|