forked from jsnbuchanan/crowd-funder-for-time-pwa
21 lines
451 B
TypeScript
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;
|
|
}
|