我正在尝试使用 TypeScript 1.8 中新的全局增强功能来扩展本机 JavaScript 类型,如此处所述。然而,当扩展函数返回相同类型时,我遇到了问题。
全局.ts
export {};
declare global {
interface Date {
Copy(): Date;
}
}
if (!Date.prototype.Copy) {
Date.prototype.Copy = function () {
return new Date(this.valueOf());
};
}
Run Code Online (Sandbox Code Playgroud)
日期助手.ts
export class DateHelper {
public static CopyDate(date: Date): Date {
return date.Copy();
}
}
Run Code Online (Sandbox Code Playgroud)
我在尝试使用 DateHelper.ts 中定义的扩展时遇到以下错误 TS2322:
Type 'Date' is not assignable to type 'Date'.
Property 'toDateString' is missing in type 'Date'.
Run Code Online (Sandbox Code Playgroud)
有人知道如何解决这个问题吗?