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.

10 lines (8 loc) 186 B
import { User } from "../user"; import { Venture } from "./venture"; export interface VentureSubscription { id: string; subscriber?: User; venture?: Venture; createdAt: Date; }