This commit is contained in:
Luiz Silva 2025-01-06 18:00:24 -03:00
parent 87309f5b39
commit da828ddf4f
120 changed files with 2482 additions and 4328 deletions

View file

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