16 lines
No EOL
565 B
TypeScript
16 lines
No EOL
565 B
TypeScript
import { type tipoResposta } from "p-respostas";
|
|
export type tipoUsuarioExterno = {
|
|
nome: string;
|
|
email: string;
|
|
telefone: string;
|
|
vinculo: string;
|
|
codigo_produto: string;
|
|
chave_produto: string;
|
|
};
|
|
export declare const consultaUsuariosexterno: ({ token_produto, ambiente, codigo_produto, chave_produto, }: {
|
|
ambiente: "desenvolvimento" | "producao";
|
|
token_produto: string;
|
|
codigo_produto: string;
|
|
chave_produto: string;
|
|
}) => Promise<tipoResposta<tipoUsuarioExterno[]>>;
|
|
//# sourceMappingURL=_consultaUsuariosexterno.d.ts.map
|