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
|
=== tests/cases/compiler/exportAlreadySeen.ts ===
module M {
>M : typeof M
export export var x = 1;
>x : number
>1 : 1
export export function f() { }
>f : () => void
export export module N {
>N : typeof N
export export class C { }
>C : C
export export interface I { }
}
}
declare module A {
>A : typeof A
export export var x;
>x : any
export export function f()
>f : () => any
export export module N {
>N : typeof N
export export class C { }
>C : C
export export interface I { }
}
}
|