I\'ve been using TypeScript here and there for web applications and have referenced public type definitions made available through Definitely Typed but one thing that has always
well, I think that you can use modules for this purpose, modules is like namespace in c#, e.g.
//File Utils.ts module Utils { export class UtilsClass { do(param: string) { //do something } } } //Another ts file var formatter = new Utils.UtilsClass(); formatter.do("str");
Regards,