From 8832c8f013f547a7c75bf62773f307b0c9d6bc97 Mon Sep 17 00:00:00 2001 From: Arnav2106 Date: Tue, 31 Mar 2026 15:26:13 +0530 Subject: [PATCH] docs(utils/async/for-each): add missing type parameters to FactoryFunction --- .../@stdlib/utils/async/for-each/docs/types/index.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/node_modules/@stdlib/utils/async/for-each/docs/types/index.d.ts b/lib/node_modules/@stdlib/utils/async/for-each/docs/types/index.d.ts index c13d320395fc..f29250a2e845 100644 --- a/lib/node_modules/@stdlib/utils/async/for-each/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/utils/async/for-each/docs/types/index.d.ts @@ -111,7 +111,7 @@ type Fcn = BinaryFcn | TernaryFcn | QuaternaryFcn; * @param collection - input collection * @param done - function to invoke upon completion */ -type FactoryFunction = ( collection: Collection, done: Callback ) => void; +type FactoryFunction = ( collection: Collection, done: Callback ) => void; /** * Interface for `forEachAsync`. @@ -277,7 +277,7 @@ interface ForEachAsync { * // Run `read` for each element in `files`: * forEach( files, done ); */ - factory( options: Options, fcn: Fcn ): FactoryFunction; + factory( options: Options, fcn: Fcn ): FactoryFunction; /** * Returns a function to invoke a function once for each element in a collection. @@ -328,7 +328,7 @@ interface ForEachAsync { * // Run `read` for each element in `files`: * forEach( files, done ); */ - factory( fcn: Fcn ): FactoryFunction; + factory( fcn: Fcn ): FactoryFunction; } /**