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.

12 lines (10 loc) 225 B
import { VentureEvent } from "../events/event"; import { User } from "../user"; export interface EventDonation { id: string; amount: number; currency: string; createdAt: Date; donor: User; event: VentureEvent; }