You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mohemm_srca/Mohem/node_modules_/primeng/components/utils/objectutils.d.ts

14 lines
726 B
TypeScript

import { SelectItem } from '../common/selectitem';
export declare class ObjectUtils {
static equals(obj1: any, obj2: any, field?: string): boolean;
static equalsByValue(obj1: any, obj2: any): boolean;
static resolveFieldData(data: any, field: any): any;
static isFunction(obj: any): boolean;
static filter(value: any[], fields: any[], filterValue: string): any[];
static reorderArray(value: any[], from: number, to: number): void;
static generateSelectItems(val: any[], field: string): SelectItem[];
static insertIntoOrderedArray(item: any, index: number, arr: any[], sourceArr: any[]): void;
static findIndexInList(item: any, list: any): number;
static removeAccents(str: any): any;
}