UNPKG

knip

Version:

Find and fix unused dependencies, exports and files in your TypeScript and JavaScript projects

5 lines (4 loc) 291 B
export declare const getValuesByKeyDeep: (obj: any, key: string) => unknown[]; export declare const findByKeyDeep: <T>(obj: any, key: string) => T[]; export declare const getKeysByValue: <T>(obj: T, value: unknown) => (keyof T)[]; export declare const get: <T>(obj: T, path: string) => any;