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.
15 lines (12 loc) • 298 B
text/typescript
import { Point } from "geojson";
import { Venture } from "./venture";
import { Municipality } from "../common";
export interface VentureLocation {
id: string;
location?: Point;
description?: string;
municipality: Municipality;
createdAt: Date;
updatedAt: Date;
venture?: Venture;
}