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.
15 lines (13 loc) • 481 B
text/typescript
import { VentureSponsorship } from "../contributions/sponsor";
import { VentureEvent } from "../events/event";
import { VenturePublication } from "../publications/publication";
import { VentureSubscription } from "./subscription";
import { Venture } from "./venture";
export interface VentureDetail {
id: string;
venture?: Venture;
events: VentureEvent[];
sponsorships: VentureSponsorship[];
subscriptions: VentureSubscription[];
publications: VenturePublication[];
}