Guest User

Untitled

a guest
Jan 10th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. namespace OUTER {
  2. export class Test {
  3. public static testValue = Quote.Element;
  4. // Here expecting Quote to be referenced from file3.ts.
  5. //But compiler is resolving it to *Quote* from file2.ts
  6. }
  7. }
  8.  
  9. namespace OUTER.Quote {
  10. export class Library {
  11.  
  12. }
  13. }
  14.  
  15. namespace Quote {
  16. var Element = {
  17. attr1 : "Test1",
  18. attr2 : "Test2"
  19. }
  20. }
Add Comment
Please, Sign In to add comment