import { ErrorInfo } from "../../../domain/types/electronic-billing.types"; export interface AfipErrorsDto { err?: ErrorInfo[]; } export interface AfipResultDto { resultGet?: T; errors?: AfipErrorsDto; } export type ResultWithAfipErrors = T & { errors?: AfipErrorsDto; };