11 lines
439 B
TypeScript
11 lines
439 B
TypeScript
import { type tipoResposta } from "p-respostas";
|
|
import type { z } from "zod";
|
|
import type { zAmbiente } from "../ts/ambiente";
|
|
export declare const usuarios_quipo_vincular: ({ token_produto, ambiente, conta, vinculo, codigo_usuario, email, }: {
|
|
ambiente: z.infer<typeof zAmbiente>;
|
|
token_produto: string;
|
|
conta: string;
|
|
vinculo: string;
|
|
codigo_usuario?: string;
|
|
email: string;
|
|
}) => Promise<tipoResposta<string>>;
|