1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
| index.ts(46,21): error TS7006: Parameter 'mapper' implicitly has an 'any' type. index.ts(46,29): error TS7006: Parameter 'input' implicitly has an 'any' type. index.ts(51,37): error TS7006: Parameter 'subInput' implicitly has an 'any' type. index.ts(77,24): error TS7006: Parameter 'filterer' implicitly has an 'any' type. index.ts(77,34): error TS7006: Parameter 'input' implicitly has an 'any' type. index.ts(82,37): error TS7006: Parameter 'subInput' implicitly has an 'any' type. index.ts(120,24): error TS7006: Parameter 'reducer' implicitly has an 'any' type. index.ts(120,33): error TS7006: Parameter 'initialValue' implicitly has an 'any' type. index.ts(120,47): error TS7006: Parameter 'input' implicitly has an 'any' type. index.ts(125,37): error TS7006: Parameter 'subInitialValue' implicitly has an 'any' type. index.ts(125,54): error TS7006: Parameter 'subInput' implicitly has an 'any' type. index.ts(130,48): error TS7006: Parameter 'subSubInput' implicitly has an 'any' type. index.ts(141,37): error TS7006: Parameter 'subInput' implicitly has an 'any' type. index.ts(163,21): error TS7006: Parameter 'a' implicitly has an 'any' type. index.ts(163,24): error TS7006: Parameter 'b' implicitly has an 'any' type. index.ts(168,37): error TS7006: Parameter 'subB' implicitly has an 'any' type. index.ts(191,26): error TS7006: Parameter 'a' implicitly has an 'any' type. index.ts(191,29): error TS7006: Parameter 'b' implicitly has an 'any' type. index.ts(196,37): error TS7006: Parameter 'subB' implicitly has an 'any' type. index.ts(220,22): error TS7006: Parameter 'obj' implicitly has an 'any' type. index.ts(220,27): error TS7006: Parameter 'propName' implicitly has an 'any' type. index.ts(225,37): error TS7006: Parameter 'subPropName' implicitly has an 'any' type. index.ts(256,17): error TS7023: 'pipe' implicitly has return type 'any' because it does not have a return type annotation and is referenced directly or indirectly in one of its return expressions. index.ts(256,22): error TS7019: Rest parameter 'functions' implicitly has an 'any[]' type. test.ts(4,20): error TS2554: Expected 2 arguments, but got 0. test.ts(5,12): error TS2344: Type 'false' does not satisfy the constraint 'true'. test.ts(8,12): error TS2344: Type 'false' does not satisfy the constraint 'true'. test.ts(10,23): error TS2554: Expected 3 arguments, but got 0. test.ts(11,12): error TS2344: Type 'false' does not satisfy the constraint 'true'. test.ts(14,12): error TS2344: Type 'false' does not satisfy the constraint 'true'. test.ts(17,12): error TS2344: Type 'false' does not satisfy the constraint 'true'. test.ts(20,12): error TS2344: Type 'false' does not satisfy the constraint 'true'. test.ts(22,23): error TS2554: Expected 2 arguments, but got 0. test.ts(23,12): error TS2344: Type 'false' does not satisfy the constraint 'true'. test.ts(26,12): error TS2344: Type 'false' does not satisfy the constraint 'true'. test.ts(28,20): error TS2554: Expected 2 arguments, but got 0. test.ts(29,12): error TS2344: Type 'false' does not satisfy the constraint 'true'. test.ts(32,12): error TS2344: Type 'false' does not satisfy the constraint 'true'. test.ts(34,25): error TS2554: Expected 2 arguments, but got 0. test.ts(35,12): error TS2344: Type 'false' does not satisfy the constraint 'true'. test.ts(38,12): error TS2344: Type 'false' does not satisfy the constraint 'true'. test.ts(40,21): error TS2554: Expected 2 arguments, but got 0. test.ts(41,12): error TS2344: Type 'false' does not satisfy the constraint 'true'. test.ts(44,12): error TS2344: Type 'false' does not satisfy the constraint 'true'. test.ts(46,26): error TS2554: Expected 2 arguments, but got 1. test.ts(46,43): error TS2554: Expected 2 arguments, but got 1. test.ts(46,56): error TS2554: Expected 3 arguments, but got 2. test.ts(47,12): error TS2344: Type 'false' does not satisfy the constraint 'true'. test.ts(49,30): error TS2554: Expected 2 arguments, but got 1. test.ts(49,47): error TS2554: Expected 2 arguments, but got 1. test.ts(50,12): error TS2344: Type 'false' does not satisfy the constraint 'true'.
|