tsbuild/test/assets/tocompile.ts

13 lines
189 B
TypeScript
Raw Normal View History

2018-07-25 18:56:42 +00:00
console.log('test');
console.log('test2');
class test2 {
2018-07-25 18:56:42 +00:00
test: string[] = [];
constructor() {
console.log('hi');
}
}
const run = async (): Promise<string> => {
return 'hi';
};