This commit is contained in:
Luiz Silva 2024-10-01 14:22:59 -03:00
parent 2cf1dfe75d
commit aac9eb143b
8 changed files with 18 additions and 1 deletions

View file

@ -62,6 +62,7 @@ declare class ClassPilaoEnviar {
constructor({ conta, produto, emDesenvolvimento, ver_log, }: z.infer<typeof zp_produto_conta>);
tabela(tabela: string): this;
adicionarRegistroParaEnviar(...registro: z.infer<typeof zp_enviar_registros>["registros"]): this;
adicionarCodigoParaDeletar(...codigos: string[]): this;
__salvar_enviar_registros(): Promise<tipoResposta<true>>;
__salvar_deletar_registros(): Promise<import("p-respostas").tipoRespostaErro | import("p-respostas").tipoRespostaSucesso<boolean>>;
salvar(): Promise<import("p-respostas").tipoRespostaErro | import("p-respostas").tipoRespostaSucesso<boolean>>;