13 lines
189 B
TypeScript
13 lines
189 B
TypeScript
console.log('test');
|
|
console.log('test2');
|
|
class test2 {
|
|
test: string[] = [];
|
|
constructor() {
|
|
console.log('hi');
|
|
}
|
|
}
|
|
|
|
const run = async (): Promise<string> => {
|
|
return 'hi';
|
|
};
|