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.
16 lines (15 loc) • 606 B
TypeScript
import { VentureEventData } from "./venture-event.data";
import { VenturePublicationData } from "./venture-publication.data";
import { VentureSponsorshipData } from "./venture-sponsorship.data";
import { VentureSubscriptionData } from "./venture-subscription.data";
import { VentureData } from "./venture.data";
export declare class VentureDetailData {
id: string;
createdAt: Date;
updatedAt: Date;
venture?: VentureData;
events: VentureEventData[];
publications: VenturePublicationData[];
sponsorships: VentureSponsorshipData[];
subscriptions: VentureSubscriptionData[];
}