foreach-prop
Version:
Array-like methods for objects
5 lines • 483 B
TypeScript
import { Anything, Extra, FilterCallback, ImmutableObject, Key } from './types';
declare function find<V, K extends Key, E extends Extra, TH = Anything>(this: TH, object: ImmutableObject<K, V>, callback: FilterCallback<V, K, E, TH>, ...extra: E): V | void;
declare function find<V, K extends Key, TH = Anything>(this: TH, object: ImmutableObject<K, V>, callback: FilterCallback<V, K, Extra, TH>, ...extra: Extra): V | void;
export default find;
//# sourceMappingURL=find.d.ts.map