You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tests/cases/conformance/types/tuple/restTupleElements1.ts(34,31): error TS2344: Type '[number, number, string]' does not satisfy the constraint '[number, ...number[]]'.
20
20
Type at positions 1 through 2 in source is not compatible with type at position 1 in target.
21
-
Type 'string | number' is not assignable to type 'number'.
22
-
Type 'string' is not assignable to type 'number'.
21
+
Type 'string' is not assignable to type 'number'.
23
22
tests/cases/conformance/types/tuple/restTupleElements1.ts(35,31): error TS2344: Type '[number, number, number, string]' does not satisfy the constraint '[number, ...number[]]'.
24
23
Type at positions 1 through 3 in source is not compatible with type at position 1 in target.
25
-
Type 'string | number' is not assignable to type 'number'.
26
-
Type 'string' is not assignable to type 'number'.
24
+
Type 'string' is not assignable to type 'number'.
27
25
tests/cases/conformance/types/tuple/restTupleElements1.ts(59,4): error TS2345: Argument of type '[]' is not assignable to parameter of type '[unknown, ...unknown[]]'.
28
26
Source has 0 element(s) but target requires 1.
29
27
@@ -94,14 +92,12 @@ tests/cases/conformance/types/tuple/restTupleElements1.ts(59,4): error TS2345: A
94
92
~~~~~~~~~~~~~~~~~~~~~~~~
95
93
!!! error TS2344: Type '[number, number, string]' does not satisfy the constraint '[number, ...number[]]'.
96
94
!!! error TS2344: Type at positions 1 through 2 in source is not compatible with type at position 1 in target.
97
-
!!! error TS2344: Type 'string | number' is not assignable to type 'number'.
98
-
!!! error TS2344: Type 'string' is not assignable to type 'number'.
95
+
!!! error TS2344: Type 'string' is not assignable to type 'number'.
0 commit comments