We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
11 export type CountSnapshot<T = DocumentData> = lite.AggregateQuerySnapshot< ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 12 { ~~~ ... 16 T ~~~ 17 >;
export type CountSnapshot<T = DocumentData> = lite.AggregateQuerySnapshot<{ count: lite.AggregateField; }, any, T>;
muchas gracias de antemano
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Error: node_modules/rxfire/firestore/lite/interfaces.d.ts:11:47 - error TS2314: Generic type 'AggregateQuerySnapshot' requires 1 type argument(s).
11 export type CountSnapshot<T = DocumentData> = lite.AggregateQuerySnapshot<
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
12 {
~~~
...
16 T
~~~
17 >;
Intente lo siguiente sin resultado positivo, sobre el archivo interfaces.d.ts dentro del node_modules:
export type CountSnapshot<T = DocumentData> = lite.AggregateQuerySnapshot<{
count: lite.AggregateField;
}, any, T>;
muchas gracias de antemano
The text was updated successfully, but these errors were encountered: