This commit is contained in:
Luiz H. R. Silva 2024-06-06 19:49:57 -03:00
parent 681141a8d8
commit a1e543cfb8
12 changed files with 87 additions and 46 deletions

View file

@ -0,0 +1,16 @@
import { type tipoResposta } from "p-respostas";
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, buscar, }: {
ambiente: "desenvolvimento" | "producao";
token_produto: string;
buscar: (url: string, headers: {
[k: string]: string;
}) => Promise<tipoResposta<tipoUsuarioExterno[]>>;
}) => Promise<tipoResposta<tipoUsuarioExterno[]>>;