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;
|
conta: string;
|
||||||
};
|
};
|
||||||
type z_tipagem_registros = {
|
type z_tipagem_registros = {
|
||||||
z_contagem_em_barra_vertical: any[];
|
z_contagem_em_barra_vertical: {
|
||||||
z_contagem_em_pizza: any[];
|
contagem: number;
|
||||||
|
[k: string]: any;
|
||||||
|
}[];
|
||||||
|
z_contagem_em_pizza: {
|
||||||
|
contagem: number;
|
||||||
|
[k: string]: any;
|
||||||
|
}[];
|
||||||
z_tabela: {
|
z_tabela: {
|
||||||
[k: string]: any;
|
[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> = {
|
type tipoRetornoSerieconsulta<T extends keyof typeof visoes_pilao> = {
|
||||||
registros: z_tipagem_registros[T];
|
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;
|
conta: string;
|
||||||
};
|
};
|
||||||
type z_tipagem_registros = {
|
type z_tipagem_registros = {
|
||||||
z_contagem_em_barra_vertical: any[];
|
z_contagem_em_barra_vertical: {
|
||||||
z_contagem_em_pizza: any[];
|
contagem: number;
|
||||||
|
[k: string]: any;
|
||||||
|
}[];
|
||||||
|
z_contagem_em_pizza: {
|
||||||
|
contagem: number;
|
||||||
|
[k: string]: any;
|
||||||
|
}[];
|
||||||
z_tabela: {
|
z_tabela: {
|
||||||
[k: string]: any;
|
[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> = {
|
type tipoRetornoSerieconsulta<T extends keyof typeof visoes_pilao> = {
|
||||||
registros: z_tipagem_registros[T];
|
registros: z_tipagem_registros[T];
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "p-drives",
|
"name": "p-drives",
|
||||||
"version": "0.209.0",
|
"version": "0.210.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "src/index.ts",
|
"main": "src/index.ts",
|
||||||
"exports": {
|
"exports": {
|
||||||
|
|
|
||||||
|
|
@ -4,10 +4,10 @@ import type { visoes_pilao, z_padroes } from "../visoes/listaDeVisoes"
|
||||||
export type tipoConstrutorPilao = { produto: string; conta: string }
|
export type tipoConstrutorPilao = { produto: string; conta: string }
|
||||||
|
|
||||||
export type z_tipagem_registros = {
|
export type z_tipagem_registros = {
|
||||||
z_contagem_em_barra_vertical: any[]
|
z_contagem_em_barra_vertical: { contagem: number; [k: string]: any }[]
|
||||||
z_contagem_em_pizza: any[]
|
z_contagem_em_pizza: { contagem: number; [k: string]: any }[]
|
||||||
z_tabela: { [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> = {
|
export type tipoRetornoSerieconsulta<T extends keyof typeof visoes_pilao> = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue