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.

15 lines (12 loc) 291 B
import { User } from "../user"; import { VenturePublication } from "./publication"; export interface PublicationClap { id: string; user: User; publication: VenturePublication; createdAt: Date; } export interface PublicationClapCreate { publicationId: string; userId: string; }