我已经为此苦苦挣扎了一段时间,我正在尝试将扩展方法添加到angular 8的自定义类型中,但是我无法让它们进行编译。有人可以告诉我我在做什么错。
export interface MyCustomType{
name:string;
id:number;
}
我尝试过的事情: 1。
export {};
export interface MyCustomType{
toString():string;
}
MyCustomType.prototype.toString() = funtion(){
return 'this should work';
}
此错误未编译:
找不到源文件中的错误:
declare module 'mytype'{
export interface MyCustomType{
toString():string;
}
}
MyCustomType.prototype.toString() = funtion(){
return 'this should work';
}
没有使用与上面相同的错误消息进行编译。
有人可以告诉我如何向我创建的接口添加扩展方法吗?没有像Moment或Array这样的人
答案 0 :(得分:0)
另一种方法是导出类而不是接口:
export class MyCustomType {
name: string;
id: number;
toString(): string {
return 'this should work';
}
}