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.

14 lines (13 loc) 306 B
import { UserData } from "./user.data"; export declare class UserContactData { id: string; phoneNumber: string; address: string; facebookUrl: string; linkedinUrl: string; twitterUrl: string; instagramUrl: string; createdAt: Date; updatedAt: Date; user?: UserData; }