typescript icon indicating copy to clipboard operation
typescript copied to clipboard

Handle exported classes inside of modules

Open rictic opened this issue 11 years ago • 0 comments

// input ts
module M {
  export class C {

  }
}


// current closure provides
goog.provides('C', C)




// expected closure provides
goog.provides('M.C', M.C);



// Unless there's another good way of doing this with the translator?

rictic avatar Jan 07 '13 00:01 rictic