Skip to content

Instantly share code, notes, and snippets.

@zakki
Last active August 29, 2015 13:56
Show Gist options
  • Save zakki/9339712 to your computer and use it in GitHub Desktop.
Save zakki/9339712 to your computer and use it in GitHub Desktop.
module A {
export module B {
export var C:any = {}
}
}
module A {
export module B {
console.log("1", C);
function f(B) {
console.log("2", B);
}
}
console.log("2", B.C);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment