diff --git a/lib/node_modules/@stdlib/namespace/pkg2related/docs/types/test.ts b/lib/node_modules/@stdlib/namespace/pkg2related/docs/types/test.ts index c35a499a0e63..09c6b455a83e 100644 --- a/lib/node_modules/@stdlib/namespace/pkg2related/docs/types/test.ts +++ b/lib/node_modules/@stdlib/namespace/pkg2related/docs/types/test.ts @@ -23,7 +23,7 @@ import pkg2related = require( './index' ); // The function returns an array of strings or null... { - pkg2related( 'base.sin' ); // $ExpectType string[] | null + pkg2related( '@stdlib/math/base/special/sin' ); // $ExpectType string[] | null } // The compiler throws an error if the function is not provided a string... @@ -40,5 +40,5 @@ import pkg2related = require( './index' ); // The compiler throws an error if the function is provided an unsupported number of arguments... { - pkg2related( 'base.sin', 'beep' ); // $ExpectError + pkg2related( '@stdlib/math/base/special/sin', 'beep' ); // $ExpectError } diff --git a/lib/node_modules/@stdlib/namespace/standalone2pkg/docs/types/test.ts b/lib/node_modules/@stdlib/namespace/standalone2pkg/docs/types/test.ts index 1edabac8cdc9..8f0970b2c14b 100644 --- a/lib/node_modules/@stdlib/namespace/standalone2pkg/docs/types/test.ts +++ b/lib/node_modules/@stdlib/namespace/standalone2pkg/docs/types/test.ts @@ -23,7 +23,7 @@ import standalone2pkg = require( './index' ); // The function returns a string or null... { - standalone2pkg( 'base.sin' ); // $ExpectType string | null + standalone2pkg( '@stdlib/math-base-special-sin' ); // $ExpectType string | null } // The compiler throws an error if the function is not provided a string... @@ -40,5 +40,5 @@ import standalone2pkg = require( './index' ); // The compiler throws an error if the function is provided an unsupported number of arguments... { - standalone2pkg( 'base.sin', 'beep' ); // $ExpectError + standalone2pkg( '@stdlib/math-base-special-sin', 'beep' ); // $ExpectError }