.
This commit is contained in:
parent
1a2cd2ce56
commit
a435b0c6ae
17 changed files with 124 additions and 227 deletions
24
dist-import/pilao-de-dados/serie_consultar.d.ts
vendored
Normal file
24
dist-import/pilao-de-dados/serie_consultar.d.ts
vendored
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
import type { tipoResposta } from "p-respostas";
|
||||
import { z } from "zod";
|
||||
import { type zp_produto_conta } from "./_variaveis";
|
||||
import type { zp_serie_registrar } from "./serie_registrar";
|
||||
export declare const zp_serie_consultar: z.ZodObject<{
|
||||
identificador: z.ZodString;
|
||||
}, "strip", z.ZodTypeAny, {
|
||||
identificador: string;
|
||||
}, {
|
||||
identificador: string;
|
||||
}>;
|
||||
export declare const serie_consultar: ({ emDesenvolvimento, parametros: { identificador }, cliente: { conta, produto }, }: {
|
||||
emDesenvolvimento?: boolean | undefined | null;
|
||||
/** Identificação do cliente */
|
||||
cliente: z.infer<typeof zp_produto_conta>;
|
||||
parametros: z.infer<typeof zp_serie_consultar>;
|
||||
}) => {
|
||||
dados: () => Promise<tipoResposta<{
|
||||
registros: any[];
|
||||
legenda: string;
|
||||
serie: z.infer<typeof zp_serie_registrar>;
|
||||
}>>;
|
||||
url: () => string;
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue