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) 276 B
import { ContentType } from "../common"; import { VenturePublication } from "./publication"; export declare class PublicationContent { id: string; type: ContentType; content: string; createdAt: Date; updatedAt: Date; publication: VenturePublication; }