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