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 (12 loc) • 348 B
TypeScript
import { Point } from "geojson";
import { VentureData } from "./venture.data";
import { MunicipalityData } from "./municipality.data";
export declare class VentureLocationData {
id: string;
location: Point;
description?: string;
municipality: MunicipalityData;
createdAt: Date;
updatedAt: Date;
Venture?: VentureData;
}