1234567891011121314151617 |
- export declare function objectEach<T>(obj: T, iterate: (item: any, key: string, obj: T) => void, context ?: any): void;
- export declare function objectEach(obj: any, iterate: (item: any, key: string, obj: any) => void, context ?: any): void;
- declare module './ctor' {
- interface XEUtilsMethods {
- objectEach: typeof objectEach;
- }
- }
- export default objectEach
|