This commit is contained in:
andreLMpena 2024-12-02 11:01:56 -03:00
parent 1d2ac18171
commit 0172055539
15 changed files with 44 additions and 41 deletions

View file

@ -1,16 +0,0 @@
import { type tipoResposta } from "p-respostas";
import type { z } from "zod";
import type { zAmbiente } from "../ts/ambiente";
export type tipoUsuarioExterno = {
nome: string;
email: string;
telefone: string;
vinculo: string;
codigo_conta: string;
chave_produto: string;
codigo: string;
};
export declare const usuarios_quipo_governo: ({ token_produto, ambiente, }: {
ambiente: z.infer<typeof zAmbiente>;
token_produto: string;
}) => Promise<tipoResposta<tipoUsuarioExterno[]>>;