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 @@ -1064,7 +1064,7 @@ async function completeAsyncIteratorValue(
1064
1064
}
1065
1065
1066
1066
const itemPath = addPath ( path , index , undefined ) ;
1067
- let iteration ;
1067
+ let iteration : IteratorResult < unknown > ;
1068
1068
try {
1069
1069
// eslint-disable-next-line no-await-in-loop
1070
1070
iteration = await iterator . next ( ) ;
@@ -2012,7 +2012,7 @@ async function executeStreamAsyncIteratorItem(
2012
2012
asyncPayloadRecord : StreamItemRecord ,
2013
2013
itemPath : Path ,
2014
2014
) : Promise < IteratorResult < unknown > > {
2015
- let iteration ;
2015
+ let iteration : IteratorResult < unknown > ;
2016
2016
try {
2017
2017
iteration = await iterator . next ( ) ;
2018
2018
} catch ( rawError ) {
@@ -2072,7 +2072,7 @@ async function executeStreamAsyncIterator(
2072
2072
streamContext,
2073
2073
} ) ;
2074
2074
2075
- let iteration ;
2075
+ let iteration : IteratorResult < unknown > ;
2076
2076
try {
2077
2077
// eslint-disable-next-line no-await-in-loop
2078
2078
iteration = await executeStreamAsyncIteratorItem (
You can’t perform that action at this time.
0 commit comments