This commit is contained in:
Luiz Silva 2024-10-02 09:47:56 -03:00
parent 64ab623007
commit 9c9570388f
7 changed files with 30 additions and 19 deletions

View file

@ -1,4 +1,11 @@
import type { z } from "zod";
import type { visoes } from "../visoes";
export type tipoConstrutorPilao = {
produto: string;
conta: string;
};
export type tipoRetornoSerirconsulta<T extends keyof typeof visoes> = {
registros: any[];
legenda: string;
serie: z.infer<(typeof visoes)[T]>;
};