2018-04-02 07:34:16 +02:00

10 lines
204 B
TypeScript

import Application from "./Application"
import AnimeNotifier from "./AnimeNotifier"
let app = new Application()
let arn = new AnimeNotifier(app)
arn.init()
// For debugging purposes
window["arn"] = arn