WebStorm:参数类型不可分配给参数类型 ObjectConstructor
WebStorm: Argument type this is not assignable to parameter type ObjectConstructor
当我在 TypeScript 中使用以下构造函数时,出现错误 Argument type this is not assignable to parameter type ObjectConstructor。但是 CLI 没有显示错误。代码对我来说看起来不错 (syntax)。这是误报吗?
export class Store{
oid: string;
storeNumber: string;
address: string;
public constructor(init?: Partial<Store>) {
Object.assign(this, init);
}
}
这已被记录为 WebStorm bug. (Thank you, @lena)。
在发布修复之前,可以通过在包含误报的行上方放置以下注释来抑制检查:
// noinspection TypeScriptValidateTypes
当我在 TypeScript 中使用以下构造函数时,出现错误 Argument type this is not assignable to parameter type ObjectConstructor。但是 CLI 没有显示错误。代码对我来说看起来不错 (syntax)。这是误报吗?
export class Store{
oid: string;
storeNumber: string;
address: string;
public constructor(init?: Partial<Store>) {
Object.assign(this, init);
}
}
这已被记录为 WebStorm bug. (Thank you, @lena)。
在发布修复之前,可以通过在包含误报的行上方放置以下注释来抑制检查:
// noinspection TypeScriptValidateTypes