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) 228 B
import { User } from "../user"; import { Venture } from "../ventures"; export interface VentureSponsorship { id: string; sponsor?: User; venture?: Venture; monthlyAmount: number; createdAt: Date; updatedAt: Date; }