build
This commit is contained in:
parent
aac9eb143b
commit
102fa0c78b
14 changed files with 72 additions and 12 deletions
10
dist-import/pilao-de-dados/variaveis.d.ts
vendored
10
dist-import/pilao-de-dados/variaveis.d.ts
vendored
|
|
@ -1,4 +1,14 @@
|
|||
import { z } from "zod";
|
||||
export declare const zp_deletar_registros: z.ZodObject<{
|
||||
tabela: z.ZodString;
|
||||
codigos: z.ZodArray<z.ZodString, "many">;
|
||||
}, "strip", z.ZodTypeAny, {
|
||||
tabela: string;
|
||||
codigos: string[];
|
||||
}, {
|
||||
tabela: string;
|
||||
codigos: string[];
|
||||
}>;
|
||||
export declare const zAmbiente: z.ZodEnum<["desenvolvimento", "producao"]>;
|
||||
export declare const PREFIXO_PILAO = "/pilao-de-dados";
|
||||
export declare const validarZ: <T>(zodType: z.ZodType<T, any>, objeto: any, mensagem: string) => import("p-respostas").tipoRespostaErro | import("p-respostas").tipoRespostaSucesso<T>;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue