11 lines
368 B
TypeScript
11 lines
368 B
TypeScript
import { type tipoResposta } from "p-respostas";
|
|
import type { z } from "zod";
|
|
import type { zAmbiente } from "../ts/ambiente";
|
|
type tipoPostCodigoContaSite = {
|
|
site: string;
|
|
};
|
|
export declare const codigoContaSite: ({ ambiente, post, }: {
|
|
ambiente: z.infer<typeof zAmbiente>;
|
|
post: tipoPostCodigoContaSite;
|
|
}) => Promise<tipoResposta<string>>;
|
|
export {};
|