node-nfe-nfce
Version:
Modulo que auxilia na geração de NFe e NFCe
20 lines (19 loc) • 459 B
TypeScript
import { type ServicosSefaz } from './nfe';
import { type Tmod } from './schema';
export declare namespace SoapInfo {
type Input = {
uf: string;
amb: string;
servicoSefaz: ServicosSefaz;
isContingencia: boolean;
modelo: Tmod;
};
type Output = {
url: string;
urlQRCode?: string;
urlChave?: string;
contentType: string;
method: string;
action: string;
};
}