We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7650b11 commit 35f1cb0Copy full SHA for 35f1cb0
lib/node_modules/@stdlib/iter/any/docs/types/test.ts
@@ -59,7 +59,7 @@ function iterator() {
59
iterAny( undefined ); // $ExpectError
60
iterAny( [] ); // $ExpectError
61
iterAny( {} ); // $ExpectError
62
- iterAny( ( x ) => x ); // $ExpectError
+ iterAny( ( x: number ): number => x ); // $ExpectError
63
}
64
65
// The compiler throws an error if the function is provided insufficient arguments...
0 commit comments