Skip to content

Commit

Permalink
Update interfaces.ts
Browse files Browse the repository at this point in the history
correct possible parameter, It is considered an error, because it expects only one type parameter, it is passing three parameters
  • Loading branch information
developeralciautos committed Oct 31, 2023
1 parent f74e899 commit 58c0a80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions firestore/lite/interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ export type DocumentSnapshot<T> = lite.DocumentSnapshot<T>;
export type QuerySnapshot<T> = lite.QuerySnapshot<T>;
export type QueryDocumentSnapshot<T> = lite.QueryDocumentSnapshot<T>;
export type CountSnapshot = lite.AggregateQuerySnapshot<{
count: lite.AggregateField<number>;
}, any, DocumentData>;
count: lite.AggregateField<number>;
}>;//, any, DocumentData>;It is considered an error, because it expects only one type parameter, it is passing three parameters.

0 comments on commit 58c0a80

Please sign in to comment.