@alexssmusica/emissao-nota-fiscal
Version:
Modulo que auxilia na geração de NFe e NFCe
12 lines (11 loc) • 462 B
TypeScript
import type { ProtNFe } from '../../../domain/contracts/repos';
import type { RetornoNF } from '../../../domain/contracts/repos/retorno';
type GerarRetornoEmissaoInput = {
success: boolean;
xml_enviado: string;
xml_recebido: string;
xMotivo: string;
protNFe: ProtNFe;
};
export declare function gerarRetornoEmissao({ success, protNFe, xml_enviado, xml_recebido, xMotivo }: GerarRetornoEmissaoInput): Promise<RetornoNF>;
export {};