export function create(): { [x: string]: any; }; export function isObject(o: any): o is { [k: string]: any; }; /** * Object.assign */ export const assign: { (target: T, source: U): T & U; (target: T, source1: U, source2: V_1): T & U & V_1; (target: T, source1: U, source2: V_1, source3: W): T & U & V_1 & W; (target: object, ...sources: any[]): any; }; /** * @param {Object} obj */ export const keys: { (o: object): string[]; (o: {}): string[]; }; /** * @template V * @param {{[key:string]: V}} obj * @return {Array} */ export const values: { (o: { [s: string]: T; } | ArrayLike): T[]; (o: {}): any[]; }; export function forEach(obj: { [k: string]: V_1; }, f: (arg0: V_1, arg1: string) => any): void; export function map(obj: { [x: string]: any; }, f: (arg0: any, arg1: string) => R): Array; export function length(obj: { [x: string]: any; }): number; export function size(obj: { [x: string]: any; }): number; export function some(obj: T, f: (v: T[keyof T], k: keyof T) => boolean): boolean; export function isEmpty(obj: Object | null | undefined): boolean; export function every(obj: T, f: (v: T[keyof T], k: keyof T) => boolean): boolean; export function hasProperty(obj: any, key: string | number | symbol): boolean; export function equalFlat(a: { [x: string]: any; }, b: { [x: string]: any; }): boolean; /** * Make an object immutable. This hurts performance and is usually not needed if you perform good * coding practices. */ export const freeze: { (f: T): T; (o: T): Readonly; (o: T): Readonly; }; export function deepFreeze(o: T): Readonly; export function setIfUndefined(o: KV, key: K, createT: () => KV[K]): KV[K]; //# sourceMappingURL=object.d.ts.map