accessDeep.d.ts 189 B

12
  1. export declare const getDeep: (object: object, path: (string | number)[]) => object;
  2. export declare const setDeep: (object: any, path: (string | number)[], mapper: (v: any) => any) => any;