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.

12 lines (10 loc) 209 B
import { VentureEvent } from "./event"; export interface EventCategory { id: string; name: string; slug: string; description: string; events: VentureEvent[]; createdAt: Date; updatedAt: Date; }