mirror of
https://github.com/ckaczor/LaundryMonitor.git
synced 2026-01-16 01:25:38 -05:00
18 lines
305 B
TypeScript
18 lines
305 B
TypeScript
import { IConfig } from './config.d';
|
|
|
|
class Config implements IConfig {
|
|
port = 80;
|
|
refreshInterval = 500;
|
|
deviceDebounceInterval = 10000;
|
|
|
|
botToken = 'BOT-TOKEN';
|
|
|
|
chatId = 'CHAT-ID';
|
|
debugChatId = 'DEBUG-CHAT-ID';
|
|
|
|
debug = false;
|
|
enableTelegram = true;
|
|
}
|
|
|
|
export const config = new Config();
|