Skip to content

Commit

Permalink
Add Donation Cache Interface (codeforbtv#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanWEdwards committed Feb 22, 2024
1 parent 2373643 commit 105ee34
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/models/donation.ts
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 105ee34

Please sign in to comment.