Created
February 3, 2021 07:39
-
-
Save edwardyunghk01/ab533f0121d4f1abdb2ba51bc9a4e439 to your computer and use it in GitHub Desktop.
namespacing in ts (use in nestjs)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { A } from './someModule' | |
const o = new A.B() | |
console.log(o); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export namespace A { | |
export class B { | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment