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 (10 loc) 299 B
import { VenturePublicationData } from "./venture-publication.data"; import { UserData } from "./user.data"; export declare class PublicationClapData { id: string; publicationId: string; userId: string; publication: VenturePublicationData; user: UserData; createdAt: Date; }