10 lines
212 B
TypeScript
Raw Normal View History

2017-06-19 14:49:24 +00:00
import { Application } from "./Application"
import { AnimeNotifier } from "./AnimeNotifier"
2017-06-19 01:59:59 +00:00
2017-06-19 14:49:24 +00:00
let app = new Application()
let arn = new AnimeNotifier(app)
2017-06-19 14:20:46 +00:00
2017-07-19 07:09:55 +00:00
arn.init()
// For debugging purposes
window["arn"] = arn