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 ( ) ;
@@ -2009,7 +2009,7 @@ async function executeStreamAsyncIteratorItem(
2009
2009
asyncPayloadRecord : StreamItemRecord ,
2010
2010
itemPath : Path ,
2011
2011
) : Promise < IteratorResult < unknown > > {
2012
- let iteration ;
2012
+ let iteration : IteratorResult < unknown > ;
2013
2013
try {
2014
2014
iteration = await iterator . next ( ) ;
2015
2015
} catch ( rawError ) {
@@ -2068,7 +2068,7 @@ async function executeStreamAsyncIterator(
2068
2068
streamContext,
2069
2069
} ) ;
2070
2070
2071
- let iteration ;
2071
+ let iteration : IteratorResult < unknown > ;
2072
2072
try {
2073
2073
// eslint-disable-next-line no-await-in-loop
2074
2074
iteration = await executeStreamAsyncIteratorItem (
You can’t perform that action at this time.
0 commit comments