UNPKG

material-dynamic-forms

Version:

¡Crea formularios dinámicos, potentes y configurables en Angular usando Material Design! 🚀

14 lines (13 loc) 828 B
import { HttpErrorResponse, HttpParams } from '@angular/common/http'; import { MessageService } from 'primeng/api'; import { ObjectKeyValue } from '../interfaces'; export declare function handleError(error: HttpErrorResponse): import("rxjs").Observable<never>; export declare function removeNullValuesFromQueryParams(params: HttpParams): HttpParams; export declare const FunctionRejectData: (type: any, _messageService: MessageService) => void; export declare function filterObjectKeys<T extends object, K extends keyof T>(obj: T, keysToKeep: readonly K[]): Pick<T, K>; export declare function getValueFromProperty(row: any, property: string): any; export declare function removeItemStorage(): void; export declare const transformToObject: (objectSelect: ObjectKeyValue) => { id: number; nombre: string; };