1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
=== tests/cases/compiler/file1.ts ===
function foo() {}
>foo : typeof import("tests/cases/compiler/file1.ts")
namespace foo {
>foo : typeof import("tests/cases/compiler/file1.ts")
export var v = 1;
>v : number
>1 : 1
}
export = foo;
>foo : typeof foo
=== tests/cases/compiler/file2.ts ===
import x = require("./file1");
>x : typeof x
x.b = 1;
>x.b = 1 : 1
>x.b : number
>x : typeof x
>b : number
>1 : 1
// OK - './file1' is a namespace
declare module "./file1" {
>"./file1" : typeof x
interface A { a }
>a : any
let b: number;
>b : number
}
=== tests/cases/compiler/file3.ts ===
import * as x from "./file1";
>x : typeof x
import "./file2";
let a: x.A;
>a : x.A
>x : any
let b = x.b;
>b : number
>x.b : number
>x : typeof x
>b : number
|