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
src/02-passing-type-arguments/07-create-new-set.problem.ts(12,10): error TS2344: Type 'false' does not satisfy the constraint 'true'.
21
21
src/02-passing-type-arguments/07-create-new-set.problem.ts(13,10): error TS2344: Type 'false' does not satisfy the constraint 'true'.
22
22
src/02-passing-type-arguments/08-default-generics.problem.ts(14,10): error TS2344: Type 'false' does not satisfy the constraint 'true'.
23
-
src/02-passing-type-arguments/09-generics-in-type-arguments-in-arguments.problem.ts(15,24): error TS2571: Object is of type 'unknown'.
23
+
src/02-passing-type-arguments/09-generics-in-type-arguments-in-arguments.problem.ts(15,24): error TS18046: 'component' is of type 'unknown'.
24
24
src/02-passing-type-arguments/09-generics-in-type-arguments-in-arguments.problem.ts(28,12): error TS2344: Type 'false' does not satisfy the constraint 'true'.
25
25
src/02-passing-type-arguments/10-reduce.problem.ts(14,3): error TS7053: Element implicitly has an 'any' type because expression of type 'string' can't be used to index type '{}'.
26
26
No index signature with a parameter of type 'string' was found on type '{}'.
27
27
src/02-passing-type-arguments/10-reduce.problem.ts(28,24): error TS2344: Type 'false' does not satisfy the constraint 'true'.
28
28
src/02-passing-type-arguments/11-data-fetcher.problem.ts(10,32): error TS2558: Expected 0 type arguments, but got 1.
29
29
src/02-passing-type-arguments/11-data-fetcher.problem.ts(15,24): error TS2344: Type 'false' does not satisfy the constraint 'true'.
30
-
src/03-art-of-type-arguments/12-generics-at-different-levels.problem.ts(8,19): error TS2571: Object is of type 'unknown'.
30
+
src/03-art-of-type-arguments/12-generics-at-different-levels.problem.ts(8,19): error TS18046: 'config' is of type 'unknown'.
31
31
src/03-art-of-type-arguments/12-generics-at-different-levels.problem.ts(41,14): error TS2344: Type 'false' does not satisfy the constraint 'true'.
32
32
src/03-art-of-type-arguments/12-generics-at-different-levels.problem.ts(47,7): error TS2698: Spread types may only be created from object types.
33
33
src/03-art-of-type-arguments/12-generics-at-different-levels.problem.ts(57,14): error TS2344: Type 'false' does not satisfy the constraint 'true'.
Argument of type 'unknown' is not assignable to parameter of type 'object'.
39
39
src/03-art-of-type-arguments/13-typed-object-keys.problem.ts(21,22): error TS2344: Type 'false' does not satisfy the constraint 'true'.
40
40
src/03-art-of-type-arguments/14-safe-function.problem.ts(7,5): error TS2370: A rest parameter must be of an array type.
41
-
src/03-art-of-type-arguments/14-safe-function.problem.ts(18,22): error TS2571: Object is of type 'unknown'.
41
+
src/03-art-of-type-arguments/14-safe-function.problem.ts(18,22): error TS18046: 'func' is of type 'unknown'.
42
42
src/03-art-of-type-arguments/14-safe-function.problem.ts(18,30): error TS2488: Type 'unknown' must have a '[Symbol.iterator]()' method that returns an iterator.
43
43
src/03-art-of-type-arguments/14-safe-function.problem.ts(44,7): error TS2344: Type 'false' does not satisfy the constraint 'true'.
44
44
src/03-art-of-type-arguments/14-safe-function.problem.ts(76,7): error TS2344: Type 'false' does not satisfy the constraint 'true'.
@@ -49,7 +49,7 @@ src/03-art-of-type-arguments/14.7-string-number-union.problem.ts(14,10): error T
src/03-art-of-type-arguments/15-array-or-array-member-in-generics.problem.ts(10,10): error TS2344: Type 'false' does not satisfy the constraint 'true'.
52
-
src/03-art-of-type-arguments/16-class-names-creator.problem.ts(7,24): error TS2571: Object is of type 'unknown'.
52
+
src/03-art-of-type-arguments/16-class-names-creator.problem.ts(7,24): error TS18046: 'classes' is of type 'unknown'.
Overload 2 of 2, '(role: \\"user\\"): UserPrivileges', gave the following error.
87
87
Argument of type '\\"anonymous\\"' is not assignable to parameter of type '\\"user\\"'.
88
88
src/05-function-overloads/23-function-overload-implementation.problem.ts(47,12): error TS2344: Type 'false' does not satisfy the constraint 'true'.
89
-
src/05-function-overloads/24-function-overloads-vs-union-types.problem.ts(8,10): error TS2571: Object is of type 'unknown'.
89
+
src/05-function-overloads/24-function-overloads-vs-union-types.problem.ts(8,10): error TS18046: 'generator' is of type 'unknown'.
90
90
src/05-function-overloads/24-function-overloads-vs-union-types.problem.ts(18,23): error TS2344: Type 'false' does not satisfy the constraint 'true'.
91
91
src/05-function-overloads/24-function-overloads-vs-union-types.problem.ts(26,23): error TS2344: Type 'false' does not satisfy the constraint 'true'.
92
92
src/05-function-overloads/25-generics-in-function-overloads.problem.ts(14,23): error TS2344: Type 'false' does not satisfy the constraint 'true'.
@@ -98,8 +98,8 @@ src/05-function-overloads/27-use-data-hook.problem.ts(37,23): error TS2344: Type
98
98
src/05-function-overloads/28-could-be-instantiated-with-subtype-of.problem.ts(11,43): error TS2322: Type '\\"a\\"' is not assignable to type 'TKey'.
99
99
'\\"a\\"' is assignable to the constraint of type 'TKey', but 'TKey' could be instantiated with a different subtype of constraint '\\"a\\" | \\"b\\" | \\"c\\"'.
100
100
src/05-function-overloads/28-could-be-instantiated-with-subtype-of.problem.ts(22,10): error TS2344: Type 'false' does not satisfy the constraint 'true'.
101
-
src/06-challenges/29-infinite-scroll.problem.ts(5,16): error TS2571: Object is of type 'unknown'.
102
-
src/06-challenges/29-infinite-scroll.problem.ts(8,24): error TS2571: Object is of type 'unknown'.
101
+
src/06-challenges/29-infinite-scroll.problem.ts(5,16): error TS18046: 'params' is of type 'unknown'.
102
+
src/06-challenges/29-infinite-scroll.problem.ts(8,24): error TS18046: 'params' is of type 'unknown'.
src/06-challenges/30-form-validator.problem.ts(8,23): error TS2407: The right-hand side of a 'for...in' statement must be of type 'any', an object type or a type parameter, but here has type 'unknown'.
116
-
src/06-challenges/30-form-validator.problem.ts(9,31): error TS2571: Object is of type 'unknown'.
117
-
src/06-challenges/30-form-validator.problem.ts(10,23): error TS2571: Object is of type 'unknown'.
118
-
src/06-challenges/30-form-validator.problem.ts(10,45): error TS2571: Object is of type 'unknown'.
116
+
src/06-challenges/30-form-validator.problem.ts(9,31): error TS18046: 'config' is of type 'unknown'.
117
+
src/06-challenges/30-form-validator.problem.ts(10,23): error TS18046: 'validators' is of type 'unknown'.
118
+
src/06-challenges/30-form-validator.problem.ts(10,45): error TS18046: 'values' is of type 'unknown'.
119
119
src/06-challenges/30-form-validator.problem.ts(23,14): error TS7006: Parameter 'value' implicitly has an 'any' type.
120
120
src/06-challenges/30-form-validator.problem.ts(28,15): error TS7006: Parameter 'value' implicitly has an 'any' type.
121
121
src/06-challenges/30-form-validator.problem.ts(33,11): error TS7006: Parameter 'value' implicitly has an 'any' type.
0 commit comments