File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1061,7 +1061,7 @@ async function completeAsyncIteratorValue(
1061
1061
}
1062
1062
1063
1063
const itemPath = addPath ( path , index , undefined ) ;
1064
- let iteration ;
1064
+ let iteration : IteratorResult < unknown > ;
1065
1065
try {
1066
1066
// eslint-disable-next-line no-await-in-loop
1067
1067
iteration = await iterator . next ( ) ;
@@ -1954,7 +1954,7 @@ async function executeStreamIteratorItem(
1954
1954
asyncPayloadRecord : StreamRecord ,
1955
1955
itemPath : Path ,
1956
1956
) : Promise < IteratorResult < unknown > > {
1957
- let iteration ;
1957
+ let iteration : IteratorResult < unknown > ;
1958
1958
try {
1959
1959
iteration = await iterator . next ( ) ;
1960
1960
} catch ( rawError ) {
@@ -2009,7 +2009,7 @@ async function executeStreamIterator(
2009
2009
exeContext,
2010
2010
} ) ;
2011
2011
2012
- let iteration ;
2012
+ let iteration : IteratorResult < unknown > ;
2013
2013
try {
2014
2014
// eslint-disable-next-line no-await-in-loop
2015
2015
iteration = await executeStreamIteratorItem (
You can’t perform that action at this time.
0 commit comments