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 (9 loc) 187 B
import { Venture } from "./venture"; export interface VentureContact { id: string; email: string; phoneNumber: string; venture?: Venture; createdAt: Date; updatedAt: Date; }