TypeScript/tests/baselines/reference/module_augmentUninstantiatedModule.types

16 lines
225 B
Plaintext

=== tests/cases/compiler/module_augmentUninstantiatedModule.ts ===
declare module "foo" {
namespace M {}
>M : any
var M;
>M : any
export = M;
>M : any
}
declare module "bar" {
module "foo" {}
}