Skip to content

Commit b0f2829

Browse files
committed
Update type definitions
1 parent 3d894ae commit b0f2829

File tree

6 files changed

+8
-4
lines changed

6 files changed

+8
-4
lines changed

lib/node_modules/@stdlib/math/base/special/ln/docs/types/test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ import ln = require( './index' );
3030
{
3131
ln( true ); // $ExpectError
3232
ln( false ); // $ExpectError
33+
ln( null ); // $ExpectError
34+
ln( undefined ); // $ExpectError
3335
ln( '5' ); // $ExpectError
3436
ln( [] ); // $ExpectError
3537
ln( {} ); // $ExpectError

lib/node_modules/@stdlib/math/base/special/ln/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
"scripts": "./scripts",
2323
"test": "./test"
2424
},
25-
"scripts": {},
2625
"types": "./docs/types",
26+
"scripts": {},
2727
"homepage": "https://github.com/stdlib-js/stdlib",
2828
"repository": {
2929
"type": "git",

lib/node_modules/@stdlib/math/base/special/log/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
"lib": "./lib",
2222
"test": "./test"
2323
},
24-
"scripts": {},
2524
"types": "./docs/types",
25+
"scripts": {},
2626
"homepage": "https://github.com/stdlib-js/stdlib",
2727
"repository": {
2828
"type": "git",

lib/node_modules/@stdlib/math/base/special/log1mexp/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
// TypeScript Version: 2.0
2020

2121
/**
22-
* Computes the natural logarithm of \\( 1-\exp(-|x|) \\).
22+
* Computes the natural logarithm of `1-exp(-|x|)`.
2323
*
2424
* @param x - input value
2525
* @returns function value

lib/node_modules/@stdlib/math/base/special/log1mexp/docs/types/test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ import log1mexp = require( './index' );
3030
{
3131
log1mexp( true ); // $ExpectError
3232
log1mexp( false ); // $ExpectError
33+
log1mexp( null ); // $ExpectError
34+
log1mexp( undefined ); // $ExpectError
3335
log1mexp( '5' ); // $ExpectError
3436
log1mexp( [] ); // $ExpectError
3537
log1mexp( {} ); // $ExpectError

lib/node_modules/@stdlib/math/base/special/log1mexp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
"lib": "./lib",
2222
"test": "./test"
2323
},
24-
"scripts": {},
2524
"types": "./docs/types",
25+
"scripts": {},
2626
"homepage": "https://github.com/stdlib-js/stdlib",
2727
"repository": {
2828
"type": "git",

0 commit comments

Comments
 (0)