Files
dispatcher_ng/dist/main.js
2018-01-08 17:20:41 +01:00

11 lines
207 B
JavaScript

class Test {
constructor() {
console.log("Test constructed");
}
exec() {
console.log("Hello world");
}
}
const test = new Test();
test.exec();
//# sourceMappingURL=main.js.map