什么是Typescript的原型?

时间:2015-08-16 07:46:33

标签: typescript

lib.d.ts中,我们可以找到以下代码:

interface Error {
    name: string;
    message: string;
}

interface ErrorConstructor {
    new (message?: string): Error;
    (message?: string): Error;
    prototype: Error;
}

declare var Error: ErrorConstructor;

prototype ErrorConstructor属性的重要性是什么?

0 个答案:

没有答案