File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -241,6 +241,10 @@ declare function chain<L extends readonly unknown[]>(
241241 ...fns : ChainList < Arg0 < L > , L >
242242) : ChainOutput < Arg0 < L > , Ret < L > > ;
243243
244+ declare function chainUnchecked < W = any , R = any > (
245+ fns : readonly any [ ]
246+ ) : ChainOutput < W , R > ;
247+
244248declare namespace chain {
245249 export {
246250 none ,
@@ -268,6 +272,7 @@ declare namespace chain {
268272 combineMany ,
269273 combineManyMut ,
270274 chain ,
275+ chainUnchecked ,
271276 gen ,
272277 asStream ,
273278 dataSource
Original file line number Diff line number Diff line change @@ -239,7 +239,8 @@ module.exports.normalizeMany = defs.normalizeMany;
239239module . exports . combineMany = defs . combineMany ;
240240module . exports . combineManyMut = defs . combineManyMut ;
241241
242- module . exports . chain = chain ; // for compatibility with 2.x
242+ module . exports . chain = chain ; // for compatibility with 2.x
243+ module . exports . chainUnchecked = chain ; // for TypeScript to bypass type checks
243244module . exports . gen = gen ;
244245module . exports . asStream = asStream ;
245246
You can’t perform that action at this time.
0 commit comments