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.

19 lines (16 loc) 346 B
import { User } from "../auth"; import { Venture } from "./venture"; export interface VentureCategory { id: string; name: string; slug: string; description: string; ventures?: Venture[]; users?: User[]; createdAt: Date; updatedAt: Date; } export type VentureCategoryCreate = Pick< VentureCategory, "name" | "description" >;