打字稿

时间:2017-05-11 09:42:53

标签: typescript partial-classes

files.ts

export class ServiceUrls {
 static baseUrl: string = 'http://localhost:52949/V1/';
    static baseImageUrl: string = 'http://localhost:52949/';
}

filess1.ts

extends interface  ServiceUrls{
 static baseUrl: string = 'http://localhost:52949/V1/';
    static baseImageUrl: string = 'http://localhost:52949/';
}

如何在typescript中实现部分类。我应该如何引用同一个类使其像部分类一样工作。如果我在files1.ts中给出相同的类名,则给出错误声明或语句。

1 个答案:

答案 0 :(得分:0)

我创建并正在使用 @partial 装饰器作为一种简化的语法,可以帮助将单个类的功能划分为多个类文件... https://github.com/mustafah/partials