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