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.

9 lines (8 loc) 227 B
import { Point } from "typeorm"; import { VentureEventData } from "./venture-event.data"; export declare class EventLocationData { id: string; location?: Point; description?: string; event?: VentureEventData; }