build
This commit is contained in:
parent
efd8aaf87d
commit
b83125f06b
7 changed files with 10 additions and 10 deletions
4
dist-require/pilao-de-dados/Pilao/index.d.ts
vendored
4
dist-require/pilao-de-dados/Pilao/index.d.ts
vendored
|
|
@ -5,7 +5,7 @@ import type { zp_enviar_registros } from "../_enviar_registros";
|
|||
import { type zp_deletar_registros } from "../variaveis";
|
||||
import type { visoes } from "../visoes";
|
||||
import type { tipo_pilao_api } from "./pilao-api.ts";
|
||||
import type { tipoConstrutorPilao, tipoRetornoSerirconsulta } from "./tipagem";
|
||||
import type { tipoConstrutorPilao, tipoRetornoSerieconsulta } from "./tipagem";
|
||||
declare class ClassPilao {
|
||||
#private;
|
||||
constructor({ conta, produto, emDesenvolvimento, ver_log, }: tipoConstrutorPilao & {
|
||||
|
|
@ -41,7 +41,7 @@ declare class ClassPilao {
|
|||
private processarRegistros;
|
||||
salvarRegistros(): Promise<tipoResposta<true>>;
|
||||
serieConsultar<T extends keyof typeof visoes>(tipoVisao: T, parametros: z.infer<(typeof visoes)[T]>): {
|
||||
dados: () => Promise<tipoResposta<tipoRetornoSerirconsulta<T>>>;
|
||||
dados: () => Promise<tipoResposta<tipoRetornoSerieconsulta<T>>>;
|
||||
url: () => string;
|
||||
};
|
||||
urlLaboratorio(): {
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ export type tipoConstrutorPilao = {
|
|||
produto: string;
|
||||
conta: string;
|
||||
};
|
||||
export type tipoRetornoSerirconsulta<T extends keyof typeof visoes> = {
|
||||
export type tipoRetornoSerieconsulta<T extends keyof typeof visoes> = {
|
||||
registros: any[];
|
||||
legenda: string;
|
||||
serie: z.infer<(typeof visoes)[T]>;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue