build
This commit is contained in:
parent
9bbff3f685
commit
22879a0368
4 changed files with 28 additions and 10 deletions
|
|
@ -410,12 +410,21 @@ type tipoConstrutorPilao = {
|
|||
conta: string;
|
||||
};
|
||||
type z_tipagem_registros = {
|
||||
z_contagem_em_barra_vertical: any[];
|
||||
z_contagem_em_pizza: any[];
|
||||
z_contagem_em_barra_vertical: {
|
||||
contagem: number;
|
||||
[k: string]: any;
|
||||
}[];
|
||||
z_contagem_em_pizza: {
|
||||
contagem: number;
|
||||
[k: string]: any;
|
||||
}[];
|
||||
z_tabela: {
|
||||
[k: string]: any;
|
||||
}[];
|
||||
z_soma_em_barra_vertical: any[];
|
||||
z_soma_em_barra_vertical: {
|
||||
soma: number;
|
||||
[k: string]: any;
|
||||
}[];
|
||||
};
|
||||
type tipoRetornoSerieconsulta<T extends keyof typeof visoes_pilao> = {
|
||||
registros: z_tipagem_registros[T];
|
||||
|
|
|
|||
15
dist-require/index.d.ts
vendored
15
dist-require/index.d.ts
vendored
|
|
@ -410,12 +410,21 @@ type tipoConstrutorPilao = {
|
|||
conta: string;
|
||||
};
|
||||
type z_tipagem_registros = {
|
||||
z_contagem_em_barra_vertical: any[];
|
||||
z_contagem_em_pizza: any[];
|
||||
z_contagem_em_barra_vertical: {
|
||||
contagem: number;
|
||||
[k: string]: any;
|
||||
}[];
|
||||
z_contagem_em_pizza: {
|
||||
contagem: number;
|
||||
[k: string]: any;
|
||||
}[];
|
||||
z_tabela: {
|
||||
[k: string]: any;
|
||||
}[];
|
||||
z_soma_em_barra_vertical: any[];
|
||||
z_soma_em_barra_vertical: {
|
||||
soma: number;
|
||||
[k: string]: any;
|
||||
}[];
|
||||
};
|
||||
type tipoRetornoSerieconsulta<T extends keyof typeof visoes_pilao> = {
|
||||
registros: z_tipagem_registros[T];
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "p-drives",
|
||||
"version": "0.209.0",
|
||||
"version": "0.210.0",
|
||||
"description": "",
|
||||
"main": "src/index.ts",
|
||||
"exports": {
|
||||
|
|
|
|||
|
|
@ -4,10 +4,10 @@ import type { visoes_pilao, z_padroes } from "../visoes/listaDeVisoes"
|
|||
export type tipoConstrutorPilao = { produto: string; conta: string }
|
||||
|
||||
export type z_tipagem_registros = {
|
||||
z_contagem_em_barra_vertical: any[]
|
||||
z_contagem_em_pizza: any[]
|
||||
z_contagem_em_barra_vertical: { contagem: number; [k: string]: any }[]
|
||||
z_contagem_em_pizza: { contagem: number; [k: string]: any }[]
|
||||
z_tabela: { [k: string]: any }[]
|
||||
z_soma_em_barra_vertical: any[]
|
||||
z_soma_em_barra_vertical: { soma: number; [k: string]: any }[]
|
||||
}
|
||||
|
||||
export type tipoRetornoSerieconsulta<T extends keyof typeof visoes_pilao> = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue