🐛 App > Add support to Typescript files

This commit is contained in:
brunosimon
2019-01-04 21:42:26 +01:00
parent cc54e55732
commit fdbcac2173
16 changed files with 75 additions and 43 deletions
+11
View File
@@ -0,0 +1,11 @@
const myGreeter = new Greeter("hello, world");
myGreeter.greeting = "howdy";
myGreeter.showGreeting();
class SpecialGreeter extends Greeter {
constructor() {
super("Very special greetings");
}
}