From 105ee34959d1f9f2770349668c03b24a7cb9425a Mon Sep 17 00:00:00 2001 From: NathanWEdwards Date: Thu, 22 Feb 2024 04:49:16 +0000 Subject: [PATCH] Add Donation Cache Interface (#45) --- src/models/donation.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/models/donation.ts b/src/models/donation.ts index f0f1357..9439f7c 100644 --- a/src/models/donation.ts +++ b/src/models/donation.ts @@ -1,6 +1,12 @@ //Firebase types import { DocumentReference, Timestamp } from 'firebase/firestore'; +export interface IDonationCache { + [key: string]: string | number; + id: string; + modifiedAt: number; +} + export interface IDonation { [key: string]: | boolean