import type { z } from "zod"; import type { visoes_pilao } from "../visoes/listaDeVisoes"; export type tipoConstrutorPilao = { produto: string; conta: string; }; export type tipoRetornoSerieconsulta = { registros: any[]; legenda: string; serie: z.infer<(typeof visoes_pilao)[T]>; };