From ff4c1957c999b16635d7388fe37299f8b94f7e5c Mon Sep 17 00:00:00 2001 From: Athan Reines Date: Fri, 18 Aug 2023 02:00:09 -0700 Subject: [PATCH] fix: update import path for `Collection` type definition Ref: https://github.com/stdlib-js/stdlib/commit/bde4671201dfa6b510f88bcb60d455f44c0842e1 --- lib/node_modules/@stdlib/utils/shift/docs/types/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 //