Move project to GitHub and hide Telegram config

This commit is contained in:
2018-03-26 15:39:27 -04:00
commit 74c384a652
26 changed files with 15047 additions and 0 deletions

13
app/config.d.ts vendored Normal file
View File

@@ -0,0 +1,13 @@
export interface IConfig {
port: number;
refreshInterval: number;
deviceDebounceInterval: number;
botToken: string;
chatId: string;
debugChatId: string;
debug: boolean;
enableTelegram: boolean;
}