@experteam-mx/ngx-services
Version:
Angular common services for Experteam apps
14 lines (13 loc) • 358 B
TypeScript
import { CFDI, FiscalRegimen, PostalCodeBillings } from './api-billing-mx.interfaces';
export type FiscalRegimensAcceptedOut = {
total: number;
cfdi_use: CFDI[];
};
export type FiscalRegimensOut = {
total: number;
fiscal_regimen: FiscalRegimen[];
};
export type PostalCodesOut = {
postal_code: PostalCodeBillings[];
total: number;
};