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.

13 lines (10 loc) 226 B
import { Point } from "geojson"; import { Venture } from "./venture"; export interface VentureLocation { id: string; location?: Point; description?: string; createdAt: Date; updatedAt: Date; venture?: Venture; }