File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
packages/firestore/test/integration/api Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -701,7 +701,8 @@ apiDescribe('Queries', (persistence: boolean) => {
701
701
} ;
702
702
703
703
await withTestCollection ( persistence , testDocs , async coll => {
704
- let expected = { ...testDocs } ;
704
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
705
+ let expected : { [ name : string ] : any } = { ...testDocs } ;
705
706
delete expected . a ;
706
707
delete expected . h ;
707
708
delete expected . i ;
@@ -846,7 +847,8 @@ apiDescribe('Queries', (persistence: boolean) => {
846
847
} ;
847
848
848
849
await withTestCollection ( persistence , testDocs , async coll => {
849
- let expected = { ...testDocs } ;
850
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
851
+ let expected : { [ name : string ] : any } = { ...testDocs } ;
850
852
delete expected . a ;
851
853
delete expected . c ;
852
854
delete expected . g ;
You can’t perform that action at this time.
0 commit comments