4 lines
180 B
TypeScript
4 lines
180 B
TypeScript
export declare function getEachDeep(_: any): ForEachDeep;
|
|
export type ForEachDeep = (obj: any, callback: any, options?: any) => any;
|
|
export declare const forEachDeep: ForEachDeep;
|