Files
crowd-funder-from-jason/src/types/index.ts
Jose Olarte III aa09827317 Type fixes
2025-02-28 21:00:03 +08:00

21 lines
451 B
TypeScript

export interface GiveRecordWithContactInfo {
jwtId: string;
fullClaim: unknown; // Replace with proper type
giver: {
known: boolean;
displayName: string;
profileImageUrl?: string;
};
receiver: {
known: boolean;
displayName: string;
profileImageUrl?: string;
};
providerPlanName?: string;
recipientProjectName?: string;
description?: string;
subDescription?: string;
image?: string;
timestamp: string;
}