@experteam-mx/ngx-services
Version:
Angular common services for Experteam apps
22 lines (21 loc) • 593 B
TypeScript
import { Department, EconomicActivity, EstablishmentType, Municipality, PersonType } from './api-billing-sv.interfaces';
export type EconomicActivitiesOut = {
economic_activities: EconomicActivity[];
total: number;
};
export type PersonTypesOut = {
person_types: PersonType[];
total: number;
};
export type EstablishmentTypesOut = {
establishment_types: EstablishmentType[];
total: number;
};
export type DepartmentsOut = {
departments: Department[];
total: number;
};
export type MunicipalitiesOut = {
municipalities: Municipality[];
total: number;
};