Skip to content

open-nfse / ReplayItem

Type Alias: ReplayItem

ts
type ReplayItem = 
  | {
  evento: EventoResult;
  id: string;
  status: "success";
}
  | {
  emission: NfseEmitResult;
  id: string;
  status: "success_emission";
}
  | {
  error: Error;
  id: string;
  status: "still_pending";
}
  | {
  error: Error;
  id: string;
  status: "failed_permanent";
};

Defined in: src/client.ts:70

Licença MIT — biblioteca não oficial, sem vínculo com a Receita Federal.