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.

9 lines (7 loc) 155 B
import { VentureEvent } from "./event"; export interface EventContact { id: string; email?: string; phoneNumber?: string; event?: VentureEvent; }