UNPKG

185 BPlain TextView Raw
1import B from './require';
2import heading from './require-x';
3
4class ImportClass {
5 constructor(public greeting: string) { }
6 greet() {
7 return "<h1>" + this.greeting + "</h1>";
8 }
9};