Skip to content

Commit 94cd9ae

Browse files
author
Kanchalai Tanglertsampan
committed
Merge branch 'master' into emitTypeAliasInDeclarationFile
2 parents 58976ff + 949c197 commit 94cd9ae

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

tests/baselines/reference/commentOnDecoratedClassDeclaration.types

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ declare function decorator(x: string): any;
99
@decorator("hello")
1010
>decorator("hello") : any
1111
>decorator : (x: string) => any
12-
>"hello" : string
12+
>"hello" : "hello"
1313

1414
class Remote { }
1515
>Remote : Remote
@@ -21,7 +21,7 @@ class Remote { }
2121
@decorator("hi")
2222
>decorator("hi") : any
2323
>decorator : (x: string) => any
24-
>"hi" : string
24+
>"hi" : "hi"
2525

2626
class AnotherRomote {
2727
>AnotherRomote : AnotherRomote

tests/baselines/reference/commentOnExportEnumDeclaration.types

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export enum Color {
66
>Color : Color
77

88
r, g, b
9-
>r : Color
10-
>g : Color
11-
>b : Color
9+
>r : Color.r
10+
>g : Color.g
11+
>b : Color.b
1212
}

0 commit comments

Comments
 (0)