Type fixes

This commit is contained in:
Jose Olarte III
2025-02-28 21:00:03 +08:00
parent cc1780bd01
commit aa09827317
2 changed files with 72 additions and 34 deletions

View File

@@ -1,6 +1,6 @@
export interface GiveRecordWithContactInfo {
jwtId: string;
fullClaim: any; // Replace with proper type
fullClaim: unknown; // Replace with proper type
giver: {
known: boolean;
displayName: string;
@@ -17,4 +17,4 @@ export interface GiveRecordWithContactInfo {
subDescription?: string;
image?: string;
timestamp: string;
}
}