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.

13 lines (11 loc) 269 B
import { User } from "../auth"; import { VentureEvent } from "../events/event"; import { UserDetail } from "../user"; export interface EventDonation { id: string; amount: number; currency: string; createdAt: Date; donor: UserDetail; event: VentureEvent; }