typescript中的@ts-ignore跳过类型检查
通过 '// @ts-ignore' 注释隐藏 .ts 文件中的错误
function fun( target:any ){ target.prototype.userName = '张三'; } @fun class Person{ } let p1 = new Person(); //@ts-ignore console.log( p1.userName );
评论()