source: trip-planner-front/node_modules/primeng/utils/objectutils.d.ts

Last change on this file was 59329aa, checked in by Ema <ema_spirova@…>, 3 years ago

adding photos

  • Property mode set to 100644
File size: 579 bytes
Line 
1export declare class ObjectUtils {
2 static equals(obj1: any, obj2: any, field?: string): boolean;
3 static equalsByValue(obj1: any, obj2: any): boolean;
4 static resolveFieldData(data: any, field: any): any;
5 static isFunction(obj: any): boolean;
6 static reorderArray(value: any[], from: number, to: number): void;
7 static insertIntoOrderedArray(item: any, index: number, arr: any[], sourceArr: any[]): void;
8 static findIndexInList(item: any, list: any): number;
9 static contains(value: any, list: any): boolean;
10 static removeAccents(str: any): any;
11}
Note: See TracBrowser for help on using the repository browser.