Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namespace OUTER {
- export class Test {
- public static testValue = Quote.Element;
- // Here expecting Quote to be referenced from file3.ts.
- //But compiler is resolving it to *Quote* from file2.ts
- }
- }
- namespace OUTER.Quote {
- export class Library {
- }
- }
- namespace Quote {
- var Element = {
- attr1 : "Test1",
- attr2 : "Test2"
- }
- }
Add Comment
Please, Sign In to add comment