diff --git a/lib/node_modules/@stdlib/utils/shift/docs/types/index.d.ts b/lib/node_modules/@stdlib/utils/shift/docs/types/index.d.ts index 237e9d8aa60..9b76edc1960 100644 --- a/lib/node_modules/@stdlib/utils/shift/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/utils/shift/docs/types/index.d.ts @@ -20,7 +20,7 @@ /// -import { Collection } from '@stdlib/types/object'; +import { Collection } from '@stdlib/types/array'; /** * Removes and returns the first element of a collection. @@ -49,7 +49,7 @@ import { Collection } from '@stdlib/types/object'; * var out = shift( arr ); * // returns [ [ 2.0, 3.0, 4.0, 5.0 ], 1.0 ] */ -declare function shift( collection: Collection ): [Collection, T]; +declare function shift( collection: Collection ): [Collection, T]; // EXPORTS //