Files
2026-07-27 14:07:26 +08:00

10 lines
160 B
TypeScript

import types = require('./types');
declare function findKey(
obj: any,
predicate: types.AnyFn,
ctx?: any
): string | undefined;
export = findKey;