isolamento de pacote

This commit is contained in:
Luiz Silva 2025-07-06 18:35:12 -03:00
commit f34b66cbe4
96 changed files with 2285 additions and 0 deletions

View file

@ -0,0 +1,9 @@
import { type tipoResposta } from "p-respostas";
type tipoPostCodigoContaSite = {
site: string;
};
export declare const codigoContaSite: ({ url_api_autenticacao, post, }: {
url_api_autenticacao: string;
post: tipoPostCodigoContaSite;
}) => Promise<tipoResposta<string>>;
export {};