UNPKG

@alexssmusica/emissao-nota-fiscal

Version:
18 lines (17 loc) 457 B
import type { Empresa, TCodUfIbge } from '.'; import type { SoapInfo } from './soap-info'; import type { WebProxy } from './web-proxy'; export declare namespace SoapRequest { type Input = { xml: string; empresa: Empresa; soap: SoapInfo.Output; webProxy?: WebProxy; cUf: TCodUfIbge; }; type Output = { xml_enviado: string; xml_recebido: string; data: any; }; }