remove test code

This commit is contained in:
liangping 2022-05-17 08:46:51 +08:00
parent 4e7587a619
commit ebd8299b55

View File

@ -1,12 +0,0 @@
interface hello {
name: string;
}
class HelloType implements hello {
name: string
constructor(name: string) {
this.name = name
}
}
console.log('Hello from typescript', new HelloType('typescript'))