We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94ae0df commit d8ddb78Copy full SHA for d8ddb78
src/index.d.ts
@@ -238,11 +238,13 @@ declare function dataSource<F>(
238
* @remarks This is the main function of this library.
239
*/
240
declare function chain<L extends readonly unknown[]>(
241
- ...fns: ChainList<Arg0<L>, L>
+ ...fns: ChainList<Arg0<L>, L>,
242
+ options?: ChainOptions
243
): ChainOutput<Arg0<L>, Ret<L>>;
244
245
declare function chainUnchecked<W = any, R = any>(
- fns: readonly any[]
246
+ fns: readonly any[],
247
248
): ChainOutput<W, R>;
249
250
declare namespace chain {
0 commit comments