melhorias no build

This commit is contained in:
Luiz Silva 2024-05-07 09:27:49 -03:00
parent cd6d9c35a2
commit 1d6a109fc4
387 changed files with 765 additions and 23443 deletions

21
dist/GEE/index.d.ts vendored
View file

@ -1,21 +0,0 @@
import { escopos, type tipoEstruturaCadastroGee, type tipoEstruturaRegistroGee, type tipoFonteObjeto, type tiposCamposGee } from "./interfaces";
export { escopos };
export type { tipoFonteObjeto };
export type { tipoEstruturaCadastroGee, tipoEstruturaRegistroGee, tiposCamposGee, };
export declare const tipoFontesGEE: tipoFonteObjeto<any, any>[];
/**
* modifica todos os parametros para que quando indefinido receba 0
tipoFontesGEE.forEach((fonte) => {
const formulaAntiga = fonte.formula
const novaFormula: typeof formulaAntiga = (pr) => {
fonte.estruturaCadastro.forEach(
(a: { tipo: tiposCamposGee; idCampo: string | number }) => {
if (a.tipo == tiposCamposGee.numero && !pr.cad[a.idCampo])
pr.cad[a.idCampo] = 0
},
)
return formulaAntiga(pr)
}
fonte.formula = novaFormula
})
*/