🐛 App > Add support to Typescript files
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
const myGreeter = new Greeter("hello, world");
|
||||
myGreeter.greeting = "howdy";
|
||||
myGreeter.showGreeting();
|
||||
|
||||
|
||||
class SpecialGreeter extends Greeter {
|
||||
constructor() {
|
||||
super("Very special greetings");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user