AppViewModel.ts
interface IAppViewModel
{
status: any;
}
export class AppViewModel{
....
}
IdentityViewModel.ts
///<reference path="AppViewModel.ts" />
export class IdentityViewModel {
constructor(parent : IAppViewModel) {
}
}
我是否应该无法判断父级在 identityViewModel 中实现了 IAppViewModel?它告诉我它在当前范围内不存在。