findKey.d.ts 155 B

123456789
  1. import types = require('./types');
  2. declare function findKey(
  3. obj: any,
  4. predicate: types.AnyFn,
  5. ctx?: any
  6. ): string | void;
  7. export = findKey;