From a41f146f9e9b2cfca60f0e8e9727994c79f9be21 Mon Sep 17 00:00:00 2001 From: Lorenzo Cea Ko <38885736+koalter@users.noreply.github.com> Date: Fri, 8 Sep 2023 15:41:00 -0300 Subject: [PATCH] Fix for issue #88 --- firestore/lite/interfaces.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/firestore/lite/interfaces.ts b/firestore/lite/interfaces.ts index a9ba75c..76875f2 100644 --- a/firestore/lite/interfaces.ts +++ b/firestore/lite/interfaces.ts @@ -7,5 +7,5 @@ export type DocumentSnapshot = lite.DocumentSnapshot; export type QuerySnapshot = lite.QuerySnapshot; export type QueryDocumentSnapshot = lite.QueryDocumentSnapshot; export type CountSnapshot = lite.AggregateQuerySnapshot<{ - count: lite.AggregateField; -}, any, DocumentData>; + count: lite.AggregateField +} | any | DocumentData>;