UNPKG

echadospalante-domain

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) 264 B
import { Point } from "geojson"; import { VentureEvent } from "./event"; import { Municipality } from "../common"; export interface EventLocation { id: string; location?: Point; municipality: Municipality; description?: string; event?: VentureEvent; }