如何在打字稿中使用命名空间

时间:2017-05-15 06:22:23

标签: typescript javascript-namespaces

File1.ts

namespace ServiceUrls {
     export class ServiceUrls {
     static baseUrl: string = 'http://localhost:52949/V1/';
          static baseImageUrl: string = 'http://localhost:52949/';
          static baseClientUrl: string = 'http://localhost:58082/'
          static resetPasswordlinkUrl: string = 'http://localhost:52949/#/Resetpassword';

     }
}

File2.ts

 namespace ServiceUrls {
    export class ServiceUrls {
        static baseUrl: string = 'http://98.142.86.22/EMSDEMOAPI/V1/';
        static resetPasswordlinkUrl: string = 'http://98.142.86.22/EMS/#/Resetpassword';
        static baseClientUrl: string = 'http://98.142.86.22/EMS/';
        static baseImageUrl = 'http://98.142.86.22/EMSDEMOAPI/';    
    }
}

如何在c#中将部分类保持在同一名称空间下的两个类。如果我们在typescript中具有与重复标识符相同的类名,则会给出错误。

有谁知道如何解决这个问题?

0 个答案:

没有答案