16 lines
551 B
TypeScript
16 lines
551 B
TypeScript
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[]>>;
|