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 @@ -1052,7 +1052,7 @@ async function completeAsyncIteratorValue(
1052
1052
}
1053
1053
1054
1054
const itemPath = addPath ( path , index , undefined ) ;
1055
- let iteration ;
1055
+ let iteration : IteratorResult < unknown > ;
1056
1056
try {
1057
1057
// eslint-disable-next-line no-await-in-loop
1058
1058
iteration = await iterator . next ( ) ;
@@ -1911,7 +1911,7 @@ async function executeStreamIteratorItem(
1911
1911
asyncPayloadRecord : StreamRecord ,
1912
1912
itemPath : Path ,
1913
1913
) : Promise < IteratorResult < unknown > > {
1914
- let iteration ;
1914
+ let iteration : IteratorResult < unknown > ;
1915
1915
try {
1916
1916
iteration = await iterator . next ( ) ;
1917
1917
} catch ( rawError ) {
@@ -1985,7 +1985,7 @@ async function executeStreamIterator(
1985
1985
exeContext,
1986
1986
} ) ;
1987
1987
1988
- let iteration ;
1988
+ let iteration : IteratorResult < unknown > ;
1989
1989
try {
1990
1990
// eslint-disable-next-line no-await-in-loop
1991
1991
iteration = await executeStreamIteratorItem (
You can’t perform that action at this time.
0 commit comments