Open bczengel opened 10 years ago
It should be
interface LoDashArrayWrapper<T> { /** * @see _.map **/ map<T, TResult>( callback: ListIterator<T, TResult>, thisArg?: any): LoDashArrayWrapper<TResult>; /** * @see _.map * @param pluckValue _.pluck style callback **/ map<T, TResult>( pluckValue: string): LoDashArrayWrapper<any>; /** * @see _.map **/ collect<T, TResult>( callback: ListIterator<T, TResult>, thisArg?: any): LoDashArrayWrapper<TResult>; /** * @see _.map **/ collect<T, TResult>( pluckValue: string): LoDashArrayWrapper<any>; }
It should be