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) 270 B
import { UserData } from "./user.data"; import { VentureData } from "./venture.data"; export declare class VentureSponsorshipData { id: string; monthlyAmount: number; createdAt: Date; updatedAt: Date; sponsor?: UserData; venture?: VentureData; }