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 (9 loc) 248 B
import { User } from "../auth"; import { UserDetail } from "../user"; import { VenturePublication } from "./publication"; export interface PublicationClap { id: string; user: UserDetail; publication: VenturePublication; createdAt: Date; }