Started using TSLint

This commit is contained in:
2019-11-17 18:09:39 +09:00
parent 5394928ea9
commit 62d63740bb
7 changed files with 134 additions and 125 deletions

View File

@ -1,10 +1,7 @@
import Application from "./Application"
import AnimeNotifier from "./AnimeNotifier"
import Application from "./Application"
let app = new Application()
let arn = new AnimeNotifier(app)
const app = new Application()
const arn = new AnimeNotifier(app)
arn.init()
// For debugging purposes
window["arn"] = arn