mirror of
https://github.com/ckaczor/LaundryMonitor.git
synced 2026-01-13 17:22:55 -05:00
14 lines
210 B
TypeScript
14 lines
210 B
TypeScript
export interface IConfig {
|
|
port: number;
|
|
refreshInterval: number;
|
|
deviceDebounceInterval: number;
|
|
|
|
botToken: string;
|
|
|
|
chatId: string;
|
|
debugChatId: string;
|
|
|
|
debug: boolean;
|
|
enableTelegram: boolean;
|
|
}
|