UNPKG

@experteam-mx/ngx-services

Version:

Angular common services for Experteam apps

18 lines (17 loc) 452 B
import { CFDI, FiscalRegimen, IncomeType, PostalCodeBillings } from './api-billing.interfaces'; export type FiscalRegimensAcceptedOut = { total: number; cfdi_use: CFDI[]; }; export type IncomeTypesOut = { income_types: IncomeType[]; total: number; }; export type FiscalRegimensOut = { total: number; fiscal_regimen: FiscalRegimen[]; }; export type PostalCodesOut = { postal_code: PostalCodeBillings[]; total: number; };