This commit is contained in:
Luiz Silva 2026-03-23 18:20:23 -03:00
parent a6b3b14753
commit e27bcd8e7c
14 changed files with 18 additions and 69 deletions

View file

@ -164,9 +164,7 @@ type IsPlainObject<T> = T extends object
============================================================================= */
type FiltroCampos<T> = {
[K in keyof T]?: IsPlainObject<T[K]> extends true
? tipoFiltro26<T[K]>
: PgOpsFor<T[K]>
[K in keyof T]?: IsPlainObject<T[K]> extends true ? tipoFiltro26<T[K]> : PgOpsFor<T[K]>
}
/* =============================================================================