node-nfe-nfce
Version:
Modulo que auxilia na geração de NFe e NFCe
30 lines (29 loc) • 639 B
TypeScript
export declare namespace CertificateLoad {
type Input = {
buffer: string;
password: string;
};
type Output = {
pem: string;
key: string;
data: {
validade: Date;
nome: string;
cnpj: string;
};
};
}
export declare namespace CertificateFromPathLoad {
type Input = {
path: string;
password: string;
};
type Output = CertificateLoad.Output;
}
export declare namespace CertificateFromBase64Load {
type Input = {
base64: string;
password: string;
};
type Output = CertificateLoad.Output;
}