We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fcdc07e + 0b5c8ce commit 949c197Copy full SHA for 949c197
tests/baselines/reference/commentOnDecoratedClassDeclaration.types
@@ -9,7 +9,7 @@ declare function decorator(x: string): any;
9
@decorator("hello")
10
>decorator("hello") : any
11
>decorator : (x: string) => any
12
->"hello" : string
+>"hello" : "hello"
13
14
class Remote { }
15
>Remote : Remote
@@ -21,7 +21,7 @@ class Remote { }
21
@decorator("hi")
22
>decorator("hi") : any
23
24
->"hi" : string
+>"hi" : "hi"
25
26
class AnotherRomote {
27
>AnotherRomote : AnotherRomote
tests/baselines/reference/commentOnExportEnumDeclaration.types
@@ -6,7 +6,7 @@ export enum Color {
6
>Color : Color
7
8
r, g, b
->r : Color
->g : Color
->b : Color
+>r : Color.r
+>g : Color.g
+>b : Color.b
}
0 commit comments