Skip to content
This repository has been archived by the owner on Jan 15, 2022. It is now read-only.

Commit

Permalink
fix: update types
Browse files Browse the repository at this point in the history
  • Loading branch information
jonyw4 committed Jul 29, 2020
1 parent 48bfb90 commit ce2d74a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ export namespace Request {
};
type CreateNotaFiscalPedidoImportado = CreateNotaFiscalPedidoBase;

type CreateNotaFiscalTransporte = DadosEndereco & {
type CreateNotaFiscalTransporte = Partial<DadosEndereco> & {
/** Quantidade de volumes transportados */
volume?: string;
/** Espécie dos volumes transportados */
Expand Down Expand Up @@ -573,8 +573,8 @@ export namespace Request {
seguro?: string;
/** TODO: Add tipagem */
reboque?: any;
entrega: DadosEnderecoComPais;
retirada: DadosEnderecoComPais;
entrega?: DadosEnderecoComPais;
retirada?: DadosEnderecoComPais;
};

interface CreateNotaFiscalBase {
Expand Down

0 comments on commit ce2d74a

Please sign in to comment.