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) 212 B
import { MunicipalityData } from "./municipality.data"; export declare class DepartmentData { id: number; name: string; createdAt: Date; updatedAt: Date; municipalities: MunicipalityData[]; }