UNPKG

echadospalante-core

Version:

This package contains the core of the echadospalante project, it contains the domain entities, helpers, and other utilities that are shared between the different services.

11 lines (10 loc) 288 B
import { UserDetailData } from "./user-detail.data"; import { VentureEventData } from "./venture-event.data"; export declare class EventDonationData { id: string; currency: string; amount: number; createdAt: Date; donor: UserDetailData; event: VentureEventData; }