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) 297 B
import { UserDetailData } from "./user-detail.data"; import { VenturePublicationData } from "./venture-publication.data"; export declare class PublicationCommentData { id: string; author: UserDetailData; content: string; publication: VenturePublicationData; createdAt: Date; }