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 (9 loc) 219 B
import { VentureData } from "./venture.data"; export declare class VentureContactData { id: string; email: string; phoneNumber: string; createdAt: Date; updatedAt: Date; Venture?: VentureData; }