UNPKG

@experteam-mx/ngx-services

Version:

Angular common services for Experteam apps

17 lines (16 loc) 396 B
import { BillingPaCustomer, District, Parish, Province } from './api-billing-pa.interfaces'; export type DistrictsOut = { total: number; districts: District[]; }; export type BillingPaCustomerOut = { customer: BillingPaCustomer; }; export type ParishesOut = { total: number; parishes: Parish[]; }; export type ProvincesOut = { total: number; provinces: Province[]; };