10 lines
155 B
TypeScript
10 lines
155 B
TypeScript
|
import types = require('./types');
|
||
|
|
||
|
declare function findKey(
|
||
|
obj: any,
|
||
|
predicate: types.AnyFn,
|
||
|
ctx?: any
|
||
|
): string | void;
|
||
|
|
||
|
export = findKey;
|