how to import two external modules with same namespace in TypeScript?
a.ts
export namespace NS {
export class A {
}
}
b.ts
export namespace NS {
export class B {
}
}
main.ts
// how to import both file?
via DeckyFx
No comments:
Post a Comment