File: moduleAugmentationDoesInterfaceMergeOfReexport.types

package info (click to toggle)
node-typescript 4.9.5%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 533,908 kB
  • sloc: javascript: 2,018,330; makefile: 7; sh: 1
file content (49 lines) | stat: -rw-r--r-- 745 bytes parent folder | download | duplicates (2)
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
=== tests/cases/compiler/file.ts ===
export interface Foo {
    x: number;
>x : number
}
=== tests/cases/compiler/reexport.ts ===

export * from "./file";
=== tests/cases/compiler/augment.ts ===
import * as ns from "./reexport";
>ns : typeof ns

declare module "./reexport" {
>"./reexport" : typeof ns

    export interface Foo {
        self: Foo;
>self : Foo
    }
}

declare const f: ns.Foo;
>f : ns.Foo
>ns : any

f.x;
>f.x : number
>f : ns.Foo
>x : number

f.self;
>f.self : ns.Foo
>f : ns.Foo
>self : ns.Foo

f.self.x;
>f.self.x : number
>f.self : ns.Foo
>f : ns.Foo
>self : ns.Foo
>x : number

f.self.self;
>f.self.self : ns.Foo
>f.self : ns.Foo
>f : ns.Foo
>self : ns.Foo
>self : ns.Foo