UNPKG

node-nfe-nfce

Version:

Modulo que auxilia na geração de NFe e NFCe

8 lines (7 loc) 296 B
import { type CertificateLoad } from "../../domain/contracts/repos"; type Setup = () => LoadCertificate; type Input = CertificateLoad.Input; type Output = CertificateLoad.Output; export type LoadCertificate = (input: Input) => Output; export declare const setupLoadCertificate: Setup; export {};