We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82801b9 commit 43e2cd7Copy full SHA for 43e2cd7
1 file changed
src/types/index.ts
@@ -1,3 +1,5 @@
1
+import type { Timestamp } from "firebase/firestore";
2
+
3
// ============================================
4
// ENTIDADES PRINCIPALES
5
@@ -127,15 +129,15 @@ export interface FirestorePrediction {
127
129
suggestedName: string;
128
130
message: string;
131
scores: GameScores;
- timestamp: FirebaseFirestore.Timestamp;
132
+ timestamp: Timestamp;
133
userAgent: string;
134
}
135
136
/**
137
* Estructura del documento de configuración
138
*/
139
export interface FirestoreEventConfig {
- revealDate: FirebaseFirestore.Timestamp;
140
+ revealDate: Timestamp;
141
isRevealed: boolean;
142
actualResult: Hypothesis | null;
143
babyName: string | null;
0 commit comments