Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update baselines
  • Loading branch information
Kanchalai Tanglertsampan committed Aug 2, 2016
commit 5b7d028ae3a2effe8296025a1be37973435f0695
1 change: 1 addition & 0 deletions tests/baselines/reference/umd-augmentation-1.symbols
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ var t = p.x;
=== tests/cases/conformance/externalModules/node_modules/math2d/index.d.ts ===

export as namespace Math2d;
>Math2d : Symbol(Math2d, Decl(index.d.ts, 0, 0))

export interface Point {
>Point : Symbol(Point, Decl(index.d.ts, 1, 27))
Expand Down
2 changes: 1 addition & 1 deletion tests/baselines/reference/umd-augmentation-1.types
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ var t = p.x;
=== tests/cases/conformance/externalModules/node_modules/math2d/index.d.ts ===

export as namespace Math2d;
>Math2d : any
>Math2d : typeof Math2d

export interface Point {
>Point : Point
Expand Down
1 change: 1 addition & 0 deletions tests/baselines/reference/umd-augmentation-2.symbols
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ var t = p.x;
=== tests/cases/conformance/externalModules/node_modules/math2d/index.d.ts ===

export as namespace Math2d;
>Math2d : Symbol(Math2d, Decl(index.d.ts, 0, 0))

export interface Point {
>Point : Symbol(Point, Decl(index.d.ts, 1, 27))
Expand Down
2 changes: 1 addition & 1 deletion tests/baselines/reference/umd-augmentation-2.types
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ var t = p.x;
=== tests/cases/conformance/externalModules/node_modules/math2d/index.d.ts ===

export as namespace Math2d;
>Math2d : any
>Math2d : typeof Math2d

export interface Point {
>Point : Point
Expand Down
1 change: 1 addition & 0 deletions tests/baselines/reference/umd-augmentation-3.symbols
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ var t = p.x;
=== tests/cases/conformance/externalModules/node_modules/math2d/index.d.ts ===

export as namespace Math2d;
>Math2d : Symbol(Math2d, Decl(index.d.ts, 0, 0))

export = M2D;
>M2D : Symbol(M2D, Decl(index.d.ts, 3, 13))
Expand Down
2 changes: 1 addition & 1 deletion tests/baselines/reference/umd-augmentation-3.types
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ var t = p.x;
=== tests/cases/conformance/externalModules/node_modules/math2d/index.d.ts ===

export as namespace Math2d;
>Math2d : any
>Math2d : typeof Math2d

export = M2D;
>M2D : typeof M2D
Expand Down
1 change: 1 addition & 0 deletions tests/baselines/reference/umd-augmentation-4.symbols
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ var t = p.x;
=== tests/cases/conformance/externalModules/node_modules/math2d/index.d.ts ===

export as namespace Math2d;
>Math2d : Symbol(Math2d, Decl(index.d.ts, 0, 0))

export = M2D;
>M2D : Symbol(M2D, Decl(index.d.ts, 3, 13))
Expand Down
2 changes: 1 addition & 1 deletion tests/baselines/reference/umd-augmentation-4.types
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ var t = p.x;
=== tests/cases/conformance/externalModules/node_modules/math2d/index.d.ts ===

export as namespace Math2d;
>Math2d : any
>Math2d : typeof Math2d

export = M2D;
>M2D : typeof M2D
Expand Down
1 change: 1 addition & 0 deletions tests/baselines/reference/umd1.symbols
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,5 @@ export interface Thing { n: typeof x }
>x : Symbol(x, Decl(foo.d.ts, 1, 10))

export as namespace Foo;
>Foo : Symbol(Foo, Decl(foo.d.ts, 3, 38))

2 changes: 1 addition & 1 deletion tests/baselines/reference/umd1.types
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ export interface Thing { n: typeof x }
>x : number

export as namespace Foo;
>Foo : any
>Foo : typeof Foo

1 change: 1 addition & 0 deletions tests/baselines/reference/umd3.symbols
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,5 @@ export interface Thing { n: typeof x }
>x : Symbol(x, Decl(foo.d.ts, 1, 10))

export as namespace Foo;
>Foo : Symbol(Foo, Decl(foo.d.ts, 3, 38))

2 changes: 1 addition & 1 deletion tests/baselines/reference/umd3.types
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ export interface Thing { n: typeof x }
>x : number

export as namespace Foo;
>Foo : any
>Foo : typeof Foo

1 change: 1 addition & 0 deletions tests/baselines/reference/umd4.symbols
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,5 @@ export interface Thing { n: typeof x }
>x : Symbol(x, Decl(foo.d.ts, 1, 10))

export as namespace Foo;
>Foo : Symbol(Foo, Decl(foo.d.ts, 3, 38))

2 changes: 1 addition & 1 deletion tests/baselines/reference/umd4.types
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ export interface Thing { n: typeof x }
>x : number

export as namespace Foo;
>Foo : any
>Foo : typeof Foo

1 change: 1 addition & 0 deletions tests/baselines/reference/umd6.symbols
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ export = Thing;
>Thing : Symbol(Thing, Decl(foo.d.ts, 0, 0))

export as namespace Foo;
>Foo : Symbol(Foo, Decl(foo.d.ts, 4, 15))

2 changes: 1 addition & 1 deletion tests/baselines/reference/umd6.types
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ export = Thing;
>Thing : typeof Thing

export as namespace Foo;
>Foo : any
>Foo : typeof Thing

1 change: 1 addition & 0 deletions tests/baselines/reference/umd7.symbols
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ export = Thing;
>Thing : Symbol(Thing, Decl(foo.d.ts, 0, 0))

export as namespace Foo;
>Foo : Symbol(Foo, Decl(foo.d.ts, 2, 15))

2 changes: 1 addition & 1 deletion tests/baselines/reference/umd7.types
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ export = Thing;
>Thing : () => number

export as namespace Foo;
>Foo : any
>Foo : () => number

1 change: 1 addition & 0 deletions tests/baselines/reference/umd8.symbols
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,5 @@ export = Thing;
>Thing : Symbol(Thing, Decl(foo.d.ts, 0, 0))

export as namespace Foo;
>Foo : Symbol(Foo, Decl(foo.d.ts, 4, 15))

2 changes: 1 addition & 1 deletion tests/baselines/reference/umd8.types
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ export = Thing;
>Thing : Thing

export as namespace Foo;
>Foo : any
>Foo : typeof Thing