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 @@ -1060,7 +1060,7 @@ async function completeAsyncIteratorValue(
1060
1060
}
1061
1061
1062
1062
const itemPath = addPath ( path , index , undefined ) ;
1063
- let iteration ;
1063
+ let iteration : IteratorResult < unknown > ;
1064
1064
try {
1065
1065
// eslint-disable-next-line no-await-in-loop
1066
1066
iteration = await iterator . next ( ) ;
@@ -1953,7 +1953,7 @@ async function executeStreamIteratorItem(
1953
1953
asyncPayloadRecord : StreamRecord ,
1954
1954
itemPath : Path ,
1955
1955
) : Promise < IteratorResult < unknown > > {
1956
- let iteration ;
1956
+ let iteration : IteratorResult < unknown > ;
1957
1957
try {
1958
1958
iteration = await iterator . next ( ) ;
1959
1959
} catch ( rawError ) {
@@ -2008,7 +2008,7 @@ async function executeStreamIterator(
2008
2008
exeContext,
2009
2009
} ) ;
2010
2010
2011
- let iteration ;
2011
+ let iteration : IteratorResult < unknown > ;
2012
2012
try {
2013
2013
// eslint-disable-next-line no-await-in-loop
2014
2014
iteration = await executeStreamIteratorItem (
You can’t perform that action at this time.
0 commit comments