drivers/dist-import/autenticacao/_usuarios_quipo_governo.d.ts
2024-06-19 17:47:48 -03:00

15 lines
496 B
TypeScript

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;
};
export declare const usuarios_quipo_governo: ({ token_produto, ambiente, }: {
ambiente: z.infer<typeof zAmbiente>;
token_produto: string;
}) => Promise<tipoResposta<tipoUsuarioExterno[]>>;