tsconfig.json文件
"typeRoots": [
"./typings"
]
./typings/index.d.ts文件
declare class StrMapStrObj {
key:string;
value: string;
}
app.ts文件
let temp:StrMapStrObj = {
key: '',
value: ''
}
console.log(temp instanceof StrMapStrObj)
报错
declare Class ts编译过程中的定义的类型, instanceof Class是js在运行时的,肯定是not defined呀