type
stringclasses
7 values
content
stringlengths
4
9.55k
repo
stringlengths
7
96
path
stringlengths
4
178
language
stringclasses
1 value
InterfaceDeclaration
interface LoDashImplicitWrapper<T> { /** * @see _.forEachRight */ eachRight( iteratee: ListIterator<string, any>, thisArg?: any ): LoDashImplicitWrapper<string>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.forEachRight */ eachRight( iteratee: ListIterator<T, any>, thisArg?: any ): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.forEachRight */ eachRight<TValue>( iteratee?: ListIterator<TValue, any>|DictionaryIterator<TValue, any>, thisArg?: any ): LoDashImplicitObjectWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitWrapper<T> { /** * @see _.forEachRight */ eachRight( iteratee: ListIterator<string, any>, thisArg?: any ): LoDashExplicitWrapper<string>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.forEachRight */ eachRight( iteratee: ListIterator<T, any>, thisArg?: any ): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.forEachRight */ eachRight<TValue>( iteratee?: ListIterator<TValue, any>|DictionaryIterator<TValue, any>, thisArg?: any ): LoDashExplicitObjectWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.every interface LoDashStatic { /** * Checks if predicate returns truthy for all elements of collection. Iteration is stopped once predicate * returns falsey. The predicate is invoked with three arguments: (value, index|key, collection). * * @param collection The collection to iterate over. * @param predicate The function invoked per iteration. * @return Returns true if all elements pass the predicate check, else false. */ every<T>( collection: List<T>, predicate?: ListIterator<T, boolean> ): boolean; /** * @see _.every */ every<T>( collection: Dictionary<T>, predicate?: DictionaryIterator<T, boolean> ): boolean; /** * @see _.every */ every<T>( collection: NumericDictionary<T>, predicate?: NumericDictionaryIterator<T, boolean> ): boolean; /** * @see _.every */ every<T>( collection: List<T>|Dictionary<T>|NumericDictionary<T>, predicate?: string|any[] ): boolean; /** * @see _.every */ every<TObject extends {}, T>( collection: List<T>|Dictionary<T>|NumericDictionary<T>, predicate?: TObject ): boolean; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.every */ every( predicate?: ListIterator<T, boolean>|NumericDictionaryIterator<T, boolean> ): boolean; /** * @see _.every */ every( predicate?: string|any[] ): boolean; /** * @see _.every */ every<TObject extends {}>( predicate?: TObject ): boolean; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.every */ every<TResult>( predicate?: ListIterator<TResult, boolean>|DictionaryIterator<TResult, boolean>|NumericDictionaryIterator<T, boolean> ): boolean; /** * @see _.every */ every( predicate?: string|any[] ): boolean; /** * @see _.every */ every<TObject extends {}>( predicate?: TObject ): boolean; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.every */ every( predicate?: ListIterator<T, boolean>|NumericDictionaryIterator<T, boolean> ): LoDashExplicitWrapper<boolean>; /** * @see _.every */ every( predicate?: string|any[] ): LoDashExplicitWrapper<boolean>; /** * @see _.every */ every<TObject extends {}>( predicate?: TObject ): LoDashExplicitWrapper<boolean>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.every */ every<TResult>( predicate?: ListIterator<TResult, boolean>|DictionaryIterator<TResult, boolean>|NumericDictionaryIterator<T, boolean> ): LoDashExplicitWrapper<boolean>; /** * @see _.every */ every( predicate?: string|any[] ): LoDashExplicitWrapper<boolean>; /** * @see _.every */ every<TObject extends {}>( predicate?: TObject ): LoDashExplicitWrapper<boolean>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.filter interface LoDashStatic { /** * Iterates over elements of collection, returning an array of all elements predicate returns truthy for. The * predicate is bound to thisArg and invoked with three arguments: (value, index|key, collection). * * If a property name is provided for predicate the created _.property style callback returns the property * value of the given element. * * If a value is also provided for thisArg the created _.matchesProperty style callback returns true for * elements that have a matching property value, else false. * * If an object is provided for predicate the created _.matches style callback returns true for elements that * have the properties of the given object, else false. * * @param collection The collection to iterate over. * @param predicate The function invoked per iteration. * @param thisArg The this binding of predicate. * @return Returns the new filtered array. */ filter<T>( collection: List<T>, predicate?: ListIterator<T, boolean>, thisArg?: any ): T[]; /** * @see _.filter */ filter<T>( collection: Dictionary<T>, predicate?: DictionaryIterator<T, boolean>, thisArg?: any ): T[]; /** * @see _.filter */ filter( collection: string, predicate?: StringIterator<boolean>, thisArg?: any ): string[]; /** * @see _.filter */ filter<T>( collection: List<T>|Dictionary<T>, predicate: string, thisArg?: any ): T[]; /** * @see _.filter */ filter<W extends {}, T>( collection: List<T>|Dictionary<T>, predicate: W ): T[]; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitWrapper<T> { /** * @see _.filter */ filter( predicate?: StringIterator<boolean>, thisArg?: any ): LoDashImplicitArrayWrapper<string>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.filter */ filter( predicate: ListIterator<T, boolean>, thisArg?: any ): LoDashImplicitArrayWrapper<T>; /** * @see _.filter */ filter( predicate: string, thisArg?: any ): LoDashImplicitArrayWrapper<T>; /** * @see _.filter */ filter<W>(predicate: W): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.filter */ filter<T>( predicate: ListIterator<T, boolean>|DictionaryIterator<T, boolean>, thisArg?: any ): LoDashImplicitArrayWrapper<T>; /** * @see _.filter */ filter<T>( predicate: string, thisArg?: any ): LoDashImplicitArrayWrapper<T>; /** * @see _.filter */ filter<W, T>(predicate: W): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitWrapper<T> { /** * @see _.filter */ filter( predicate?: StringIterator<boolean>, thisArg?: any ): LoDashExplicitArrayWrapper<string>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.filter */ filter( predicate: ListIterator<T, boolean>, thisArg?: any ): LoDashExplicitArrayWrapper<T>; /** * @see _.filter */ filter( predicate: string, thisArg?: any ): LoDashExplicitArrayWrapper<T>; /** * @see _.filter */ filter<W>(predicate: W): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.filter */ filter<T>( predicate: ListIterator<T, boolean>|DictionaryIterator<T, boolean>, thisArg?: any ): LoDashExplicitArrayWrapper<T>; /** * @see _.filter */ filter<T>( predicate: string, thisArg?: any ): LoDashExplicitArrayWrapper<T>; /** * @see _.filter */ filter<W, T>(predicate: W): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.find interface LoDashStatic { /** * Iterates over elements of collection, returning the first element predicate returns truthy for. * The predicate is bound to thisArg and invoked with three arguments: (value, index|key, collection). * * If a property name is provided for predicate the created _.property style callback returns the property * value of the given element. * * If a value is also provided for thisArg the created _.matchesProperty style callback returns true for * elements that have a matching property value, else false. * * If an object is provided for predicate the created _.matches style callback returns true for elements that * have the properties of the given object, else false. * * @param collection The collection to search. * @param predicate The function invoked per iteration. * @param thisArg The this binding of predicate. * @return Returns the matched element, else undefined. */ find<T>( collection: List<T>, predicate?: ListIterator<T, boolean>, thisArg?: any ): T; /** * @see _.find */ find<T>( collection: Dictionary<T>, predicate?: DictionaryIterator<T, boolean>, thisArg?: any ): T; /** * @see _.find */ find<T>( collection: List<T>|Dictionary<T>, predicate?: string, thisArg?: any ): T; /** * @see _.find */ find<TObject extends {}, T>( collection: List<T>|Dictionary<T>, predicate?: TObject ): T; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.find */ find( predicate?: ListIterator<T, boolean>, thisArg?: any ): T; /** * @see _.find */ find( predicate?: string, thisArg?: any ): T; /** * @see _.find */ find<TObject extends {}>( predicate?: TObject ): T; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.find */ find<TResult>( predicate?: ListIterator<TResult, boolean>|DictionaryIterator<TResult, boolean>, thisArg?: any ): TResult; /** * @see _.find */ find<TResult>( predicate?: string, thisArg?: any ): TResult; /** * @see _.find */ find<TObject extends {}, TResult>( predicate?: TObject ): TResult; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.findLast interface LoDashStatic { /** * This method is like _.find except that it iterates over elements of a collection from * right to left. * @param collection Searches for a value in this list. * @param callback The function called per iteration. * @param thisArg The this binding of callback. * @return The found element, else undefined. **/ findLast<T>( collection: Array<T>, callback: ListIterator<T, boolean>, thisArg?: any): T; /** * @see _.find **/ findLast<T>( collection: List<T>, callback: ListIterator<T, boolean>, thisArg?: any): T; /** * @see _.find **/ findLast<T>( collection: Dictionary<T>, callback: DictionaryIterator<T, boolean>, thisArg?: any): T; /** * @see _.find * @param _.pluck style callback **/ findLast<W, T>( collection: Array<T>, whereValue: W): T; /** * @see _.find * @param _.pluck style callback **/ findLast<W, T>( collection: List<T>, whereValue: W): T; /** * @see _.find * @param _.pluck style callback **/ findLast<W, T>( collection: Dictionary<T>, whereValue: W): T; /** * @see _.find * @param _.where style callback **/ findLast<T>( collection: Array<T>, pluckValue: string): T; /** * @see _.find * @param _.where style callback **/ findLast<T>( collection: List<T>, pluckValue: string): T; /** * @see _.find * @param _.where style callback **/ findLast<T>( collection: Dictionary<T>, pluckValue: string): T; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.findLast */ findLast( callback: ListIterator<T, boolean>, thisArg?: any): T; /** * @see _.findLast * @param _.where style callback */ findLast<W>( whereValue: W): T; /** * @see _.findLast * @param _.where style callback */ findLast( pluckValue: string): T; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.flatMap interface LoDashStatic { /** * Creates an array of flattened values by running each element in collection through iteratee * and concating its result to the other mapped values. The iteratee is invoked with three arguments: * (value, index|key, collection). * * @param collection The collection to iterate over. * @param iteratee The function invoked per iteration. * @return Returns the new flattened array. */ flatMap<T, TResult>( collection: List<T>, iteratee?: ListIterator<T, TResult|TResult[]> ): TResult[]; /** * @see _.flatMap */ flatMap<TResult>( collection: List<any>, iteratee?: ListIterator<any, TResult|TResult[]> ): TResult[]; /** * @see _.flatMap */ flatMap<T, TResult>( collection: Dictionary<T>, iteratee?: DictionaryIterator<T, TResult|TResult[]> ): TResult[]; /** * @see _.flatMap */ flatMap<TResult>( collection: Dictionary<any>, iteratee?: DictionaryIterator<any, TResult|TResult[]> ): TResult[]; /** * @see _.flatMap */ flatMap<T, TResult>( collection: NumericDictionary<T>, iteratee?: NumericDictionaryIterator<T, TResult|TResult[]> ): TResult[]; /** * @see _.flatMap */ flatMap<TResult>( collection: NumericDictionary<any>, iteratee?: NumericDictionaryIterator<any, TResult|TResult[]> ): TResult[]; /** * @see _.flatMap */ flatMap<TObject extends Object, TResult>( collection: TObject, iteratee?: ObjectIterator<any, TResult|TResult[]> ): TResult[]; /** * @see _.flatMap */ flatMap<TResult>( collection: Object, iteratee?: ObjectIterator<any, TResult|TResult[]> ): TResult[]; /** * @see _.flatMap */ flatMap<TWhere extends Object, TObject extends Object>( collection: TObject, iteratee: TWhere ): boolean[]; /** * @see _.flatMap */ flatMap<TObject extends Object, TResult>( collection: TObject, iteratee: Object|string ): TResult[]; /** * @see _.flatMap */ flatMap<TObject extends Object>( collection: TObject, iteratee: [string, any] ): boolean[]; /** * @see _.flatMap */ flatMap<TResult>( collection: string ): string[]; /** * @see _.flatMap */ flatMap<TResult>( collection: Object, iteratee?: Object|string ): TResult[]; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitWrapper<T> { /** * @see _.flatMap */ flatMap<TResult>( iteratee: ListIterator<string, TResult|TResult[]> ): LoDashImplicitArrayWrapper<TResult>; /** * @see _.flatMap */ flatMap(): LoDashImplicitArrayWrapper<string>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.flatMap */ flatMap<TResult>( iteratee: ListIterator<T, TResult|TResult[]>|string ): LoDashImplicitArrayWrapper<TResult>; /** * @see _.flatMap */ flatMap<TWhere extends Object>( iteratee: TWhere ): LoDashImplicitArrayWrapper<boolean>; /** * @see _.flatMap */ flatMap( iteratee: [string, any] ): LoDashImplicitArrayWrapper<boolean>; /** * @see _.flatMap */ flatMap<TResult>(): LoDashImplicitArrayWrapper<TResult>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.flatMap */ flatMap<T, TResult>( iteratee: ListIterator<T, TResult|TResult[]>|DictionaryIterator<T, TResult|TResult[]>|NumericDictionaryIterator<T, TResult|TResult[]> ): LoDashImplicitArrayWrapper<TResult>; /** * @see _.flatMap */ flatMap<TResult>( iteratee: ObjectIterator<any, TResult|TResult[]>|string ): LoDashImplicitArrayWrapper<TResult>; /** * @see _.flatMap */ flatMap<TWhere extends Object>( iteratee: TWhere ): LoDashImplicitArrayWrapper<boolean>; /** * @see _.flatMap */ flatMap( iteratee: [string, any] ): LoDashImplicitArrayWrapper<boolean>; /** * @see _.flatMap */ flatMap<TResult>(): LoDashImplicitArrayWrapper<TResult>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitWrapper<T> { /** * @see _.flatMap */ flatMap<TResult>( iteratee: ListIterator<string, TResult|TResult[]> ): LoDashExplicitArrayWrapper<TResult>; /** * @see _.flatMap */ flatMap(): LoDashExplicitArrayWrapper<string>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.flatMap */ flatMap<TResult>( iteratee: ListIterator<T, TResult|TResult[]>|string ): LoDashExplicitArrayWrapper<TResult>; /** * @see _.flatMap */ flatMap<TWhere extends Object>( iteratee: TWhere ): LoDashExplicitArrayWrapper<boolean>; /** * @see _.flatMap */ flatMap( iteratee: [string, any] ): LoDashExplicitArrayWrapper<boolean>; /** * @see _.flatMap */ flatMap<TResult>(): LoDashExplicitArrayWrapper<TResult>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.flatMap */ flatMap<T, TResult>( iteratee: ListIterator<T, TResult|TResult[]>|DictionaryIterator<T, TResult|TResult[]>|NumericDictionaryIterator<T, TResult|TResult[]> ): LoDashExplicitArrayWrapper<TResult>; /** * @see _.flatMap */ flatMap<TResult>( iteratee: ObjectIterator<any, TResult|TResult[]>|string ): LoDashExplicitArrayWrapper<TResult>; /** * @see _.flatMap */ flatMap<TWhere extends Object>( iteratee: TWhere ): LoDashExplicitArrayWrapper<boolean>; /** * @see _.flatMap */ flatMap( iteratee: [string, any] ): LoDashExplicitArrayWrapper<boolean>; /** * @see _.flatMap */ flatMap<TResult>(): LoDashExplicitArrayWrapper<TResult>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.forEach interface LoDashStatic { /** * Iterates over elements of collection invoking iteratee for each element. The iteratee is bound to thisArg * and invoked with three arguments: * (value, index|key, collection). Iteratee functions may exit iteration early by explicitly returning false. * * Note: As with other "Collections" methods, objects with a "length" property are iterated like arrays. To * avoid this behavior _.forIn or _.forOwn may be used for object iteration. * * @alias _.each * * @param collection The collection to iterate over. * @param iteratee The function invoked per iteration. * @param thisArg The this binding of iteratee. */ forEach<T>( collection: T[], iteratee?: ListIterator<T, any>, thisArg?: any ): T[]; /** * @see _.forEach */ forEach<T>( collection: List<T>, iteratee?: ListIterator<T, any>, thisArg?: any ): List<T>; /** * @see _.forEach */ forEach<T>( collection: Dictionary<T>, iteratee?: DictionaryIterator<T, any>, thisArg?: any ): Dictionary<T>; /** * @see _.forEach */ forEach<T extends {}>( collection: T, iteratee?: ObjectIterator<any, any>, thisArgs?: any ): T; /** * @see _.forEach */ forEach<T extends {}, TValue>( collection: T, iteratee?: ObjectIterator<TValue, any>, thisArgs?: any ): T; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitWrapper<T> { /** * @see _.forEach */ forEach( iteratee: ListIterator<string, any>, thisArg?: any ): LoDashImplicitWrapper<string>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.forEach */ forEach( iteratee: ListIterator<T, any>, thisArg?: any ): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.forEach */ forEach<TValue>( iteratee?: ListIterator<TValue, any>|DictionaryIterator<TValue, any>, thisArg?: any ): LoDashImplicitObjectWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitWrapper<T> { /** * @see _.forEach */ forEach( iteratee: ListIterator<string, any>, thisArg?: any ): LoDashExplicitWrapper<string>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.forEach */ forEach( iteratee: ListIterator<T, any>, thisArg?: any ): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.forEach */ forEach<TValue>( iteratee?: ListIterator<TValue, any>|DictionaryIterator<TValue, any>, thisArg?: any ): LoDashExplicitObjectWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.forEachRight interface LoDashStatic { /** * This method is like _.forEach except that it iterates over elements of collection from right to left. * * @alias _.eachRight * * @param collection The collection to iterate over. * @param iteratee The function called per iteration. * @param thisArg The this binding of callback. */ forEachRight<T>( collection: T[], iteratee?: ListIterator<T, any>, thisArg?: any ): T[]; /** * @see _.forEachRight */ forEachRight<T>( collection: List<T>, iteratee?: ListIterator<T, any>, thisArg?: any ): List<T>; /** * @see _.forEachRight */ forEachRight<T>( collection: Dictionary<T>, iteratee?: DictionaryIterator<T, any>, thisArg?: any ): Dictionary<T>; /** * @see _.forEachRight */ forEachRight<T extends {}>( collection: T, iteratee?: ObjectIterator<any, any>, thisArgs?: any ): T; /** * @see _.forEachRight */ forEachRight<T extends {}, TValue>( collection: T, iteratee?: ObjectIterator<TValue, any>, thisArgs?: any ): T; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitWrapper<T> { /** * @see _.forEachRight */ forEachRight( iteratee: ListIterator<string, any>, thisArg?: any ): LoDashImplicitWrapper<string>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.forEachRight */ forEachRight( iteratee: ListIterator<T, any>, thisArg?: any ): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.forEachRight */ forEachRight<TValue>( iteratee?: ListIterator<TValue, any>|DictionaryIterator<TValue, any>, thisArg?: any ): LoDashImplicitObjectWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitWrapper<T> { /** * @see _.forEachRight */ forEachRight( iteratee: ListIterator<string, any>, thisArg?: any ): LoDashExplicitWrapper<string>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.forEachRight */ forEachRight( iteratee: ListIterator<T, any>, thisArg?: any ): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.forEachRight */ forEachRight<TValue>( iteratee?: ListIterator<TValue, any>|DictionaryIterator<TValue, any>, thisArg?: any ): LoDashExplicitObjectWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.groupBy interface LoDashStatic { /** * Creates an object composed of keys generated from the results of running each element of collection through * iteratee. The corresponding value of each key is an array of the elements responsible for generating the * key. The iteratee is bound to thisArg and invoked with three arguments: * (value, index|key, collection). * * If a property name is provided for iteratee the created _.property style callback returns the property * value of the given element. * * If a value is also provided for thisArg the created _.matchesProperty style callback returns true for * elements that have a matching property value, else false. * * If an object is provided for iteratee the created _.matches style callback returns true for elements that * have the properties of the given object, else false. * * @param collection The collection to iterate over. * @param iteratee The function invoked per iteration. * @param thisArg The this binding of iteratee. * @return Returns the composed aggregate object. */ groupBy<T, TKey>( collection: List<T>, iteratee?: ListIterator<T, TKey>, thisArg?: any ): Dictionary<T[]>; /** * @see _.groupBy */ groupBy<T>( collection: List<any>, iteratee?: ListIterator<T, any>, thisArg?: any ): Dictionary<T[]>; /** * @see _.groupBy */ groupBy<T, TKey>( collection: Dictionary<T>, iteratee?: DictionaryIterator<T, TKey>, thisArg?: any ): Dictionary<T[]>; /** * @see _.groupBy */ groupBy<T>( collection: Dictionary<any>, iteratee?: DictionaryIterator<T, any>, thisArg?: any ): Dictionary<T[]>; /** * @see _.groupBy */ groupBy<T, TValue>( collection: List<T>|Dictionary<T>, iteratee?: string, thisArg?: TValue ): Dictionary<T[]>; /** * @see _.groupBy */ groupBy<T>( collection: List<T>|Dictionary<T>, iteratee?: string, thisArg?: any ): Dictionary<T[]>; /** * @see _.groupBy */ groupBy<TWhere, T>( collection: List<T>|Dictionary<T>, iteratee?: TWhere ): Dictionary<T[]>; /** * @see _.groupBy */ groupBy<T>( collection: List<T>|Dictionary<T>, iteratee?: Object ): Dictionary<T[]>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitWrapper<T> { /** * @see _.groupBy */ groupBy<TKey>( iteratee?: ListIterator<T, TKey>, thisArg?: any ): LoDashImplicitObjectWrapper<Dictionary<T[]>>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.groupBy */ groupBy<TKey>( iteratee?: ListIterator<T, TKey>, thisArg?: any ): LoDashImplicitObjectWrapper<Dictionary<T[]>>; /** * @see _.groupBy */ groupBy<TValue>( iteratee?: string, thisArg?: TValue ): LoDashImplicitObjectWrapper<Dictionary<T[]>>; /** * @see _.groupBy */ groupBy<TWhere>( iteratee?: TWhere ): LoDashImplicitObjectWrapper<Dictionary<T[]>>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.groupBy */ groupBy<T, TKey>( iteratee?: ListIterator<T, TKey>|DictionaryIterator<T, TKey>, thisArg?: any ): LoDashImplicitObjectWrapper<Dictionary<T[]>>; /** * @see _.groupBy */ groupBy<T>( iteratee?: ListIterator<T, any>|DictionaryIterator<T, any>, thisArg?: any ): LoDashImplicitObjectWrapper<Dictionary<T[]>>; /** * @see _.groupBy */ groupBy<T, TValue>( iteratee?: string, thisArg?: TValue ): LoDashImplicitObjectWrapper<Dictionary<T[]>>; /** * @see _.groupBy */ groupBy<T>( iteratee?: string, thisArg?: any ): LoDashImplicitObjectWrapper<Dictionary<T[]>>; /** * @see _.groupBy */ groupBy<TWhere, T>( iteratee?: TWhere ): LoDashImplicitObjectWrapper<Dictionary<T[]>>; /** * @see _.groupBy */ groupBy<T>( iteratee?: Object ): LoDashImplicitObjectWrapper<Dictionary<T[]>>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitWrapper<T> { /** * @see _.groupBy */ groupBy<TKey>( iteratee?: ListIterator<T, TKey>, thisArg?: any ): LoDashExplicitObjectWrapper<Dictionary<T[]>>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.groupBy */ groupBy<TKey>( iteratee?: ListIterator<T, TKey>, thisArg?: any ): LoDashExplicitObjectWrapper<Dictionary<T[]>>; /** * @see _.groupBy */ groupBy<TValue>( iteratee?: string, thisArg?: TValue ): LoDashExplicitObjectWrapper<Dictionary<T[]>>; /** * @see _.groupBy */ groupBy<TWhere>( iteratee?: TWhere ): LoDashExplicitObjectWrapper<Dictionary<T[]>>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.groupBy */ groupBy<T, TKey>( iteratee?: ListIterator<T, TKey>|DictionaryIterator<T, TKey>, thisArg?: any ): LoDashExplicitObjectWrapper<Dictionary<T[]>>; /** * @see _.groupBy */ groupBy<T>( iteratee?: ListIterator<T, any>|DictionaryIterator<T, any>, thisArg?: any ): LoDashExplicitObjectWrapper<Dictionary<T[]>>; /** * @see _.groupBy */ groupBy<T, TValue>( iteratee?: string, thisArg?: TValue ): LoDashExplicitObjectWrapper<Dictionary<T[]>>; /** * @see _.groupBy */ groupBy<T>( iteratee?: string, thisArg?: any ): LoDashExplicitObjectWrapper<Dictionary<T[]>>; /** * @see _.groupBy */ groupBy<TWhere, T>( iteratee?: TWhere ): LoDashExplicitObjectWrapper<Dictionary<T[]>>; /** * @see _.groupBy */ groupBy<T>( iteratee?: Object ): LoDashExplicitObjectWrapper<Dictionary<T[]>>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.includes interface LoDashStatic { /** * Checks if target is in collection using SameValueZero for equality comparisons. If fromIndex is negative, * it’s used as the offset from the end of collection. * * @param collection The collection to search. * @param target The value to search for. * @param fromIndex The index to search from. * @return True if the target element is found, else false. */ includes<T>( collection: List<T>|Dictionary<T>, target: T, fromIndex?: number ): boolean; /** * @see _.includes */ includes( collection: string, target: string, fromIndex?: number ): boolean; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.includes */ includes( target: T, fromIndex?: number ): boolean; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.includes */ includes<TValue>( target: TValue, fromIndex?: number ): boolean; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitWrapper<T> { /** * @see _.includes */ includes( target: string, fromIndex?: number ): boolean; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.includes */ includes( target: T, fromIndex?: number ): LoDashExplicitWrapper<boolean>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.includes */ includes<TValue>( target: TValue, fromIndex?: number ): LoDashExplicitWrapper<boolean>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitWrapper<T> { /** * @see _.includes */ includes( target: string, fromIndex?: number ): LoDashExplicitWrapper<boolean>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.keyBy interface LoDashStatic { /** * Creates an object composed of keys generated from the results of running each element of collection through * iteratee. The corresponding value of each key is the last element responsible for generating the key. The * iteratee function is bound to thisArg and invoked with three arguments: * (value, index|key, collection). * * If a property name is provided for iteratee the created _.property style callback returns the property * value of the given element. * * If a value is also provided for thisArg the created _.matchesProperty style callback returns true for * elements that have a matching property value, else false. * * If an object is provided for iteratee the created _.matches style callback returns true for elements that * have the properties of the given object, else false. * * @param collection The collection to iterate over. * @param iteratee The function invoked per iteration. * @param thisArg The this binding of iteratee. * @return Returns the composed aggregate object. */ keyBy<T>( collection: List<T>, iteratee?: ListIterator<T, any>, thisArg?: any ): Dictionary<T>; /** * @see _.keyBy */ keyBy<T>( collection: NumericDictionary<T>, iteratee?: NumericDictionaryIterator<T, any>, thisArg?: any ): Dictionary<T>; /** * @see _.keyBy */ keyBy<T>( collection: Dictionary<T>, iteratee?: DictionaryIterator<T, any>, thisArg?: any ): Dictionary<T>; /** * @see _.keyBy */ keyBy<T>( collection: List<T>|NumericDictionary<T>|Dictionary<T>, iteratee?: string, thisArg?: any ): Dictionary<T>; /** * @see _.keyBy */ keyBy<W extends Object, T>( collection: List<T>|NumericDictionary<T>|Dictionary<T>, iteratee?: W ): Dictionary<T>; /** * @see _.keyBy */ keyBy<T>( collection: List<T>|NumericDictionary<T>|Dictionary<T>, iteratee?: Object ): Dictionary<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitWrapper<T> { /** * @see _.keyBy */ keyBy( iteratee?: ListIterator<T, any>, thisArg?: any ): LoDashImplicitObjectWrapper<Dictionary<T>>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.keyBy */ keyBy( iteratee?: ListIterator<T, any>, thisArg?: any ): LoDashImplicitObjectWrapper<Dictionary<T>>; /** * @see _.keyBy */ keyBy( iteratee?: string, thisArg?: any ): LoDashImplicitObjectWrapper<Dictionary<T>>; /** * @see _.keyBy */ keyBy<W extends Object>( iteratee?: W ): LoDashImplicitObjectWrapper<Dictionary<T>>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.keyBy */ keyBy<T>( iteratee?: ListIterator<T, any>|NumericDictionaryIterator<T, any>|DictionaryIterator<T, any>, thisArg?: any ): LoDashImplicitObjectWrapper<Dictionary<T>>; /** * @see _.keyBy */ keyBy<T>( iteratee?: string, thisArg?: any ): LoDashImplicitObjectWrapper<Dictionary<T>>; /** * @see _.keyBy */ keyBy<W extends Object, T>( iteratee?: W ): LoDashImplicitObjectWrapper<Dictionary<T>>; /** * @see _.keyBy */ keyBy<T>( iteratee?: Object ): LoDashImplicitObjectWrapper<Dictionary<T>>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitWrapper<T> { /** * @see _.keyBy */ keyBy( iteratee?: ListIterator<T, any>, thisArg?: any ): LoDashExplicitObjectWrapper<Dictionary<T>>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.keyBy */ keyBy( iteratee?: ListIterator<T, any>, thisArg?: any ): LoDashExplicitObjectWrapper<Dictionary<T>>; /** * @see _.keyBy */ keyBy( iteratee?: string, thisArg?: any ): LoDashExplicitObjectWrapper<Dictionary<T>>; /** * @see _.keyBy */ keyBy<W extends Object>( iteratee?: W ): LoDashExplicitObjectWrapper<Dictionary<T>>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.keyBy */ keyBy<T>( iteratee?: ListIterator<T, any>|NumericDictionaryIterator<T, any>|DictionaryIterator<T, any>, thisArg?: any ): LoDashExplicitObjectWrapper<Dictionary<T>>; /** * @see _.keyBy */ keyBy<T>( iteratee?: string, thisArg?: any ): LoDashExplicitObjectWrapper<Dictionary<T>>; /** * @see _.keyBy */ keyBy<W extends Object, T>( iteratee?: W ): LoDashExplicitObjectWrapper<Dictionary<T>>; /** * @see _.keyBy */ keyBy<T>( iteratee?: Object ): LoDashExplicitObjectWrapper<Dictionary<T>>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.invoke interface LoDashStatic { /** * Invokes the method at path of object. * @param object The object to query. * @param path The path of the method to invoke. * @param args The arguments to invoke the method with. **/ invoke<TObject extends Object, TResult>( object: TObject, path: StringRepresentable|StringRepresentable[], ...args: any[]): TResult; /** * @see _.invoke **/ invoke<TValue, TResult>( object: Dictionary<TValue>|TValue[], path: StringRepresentable|StringRepresentable[], ...args: any[]): TResult; /** * @see _.invoke **/ invoke<TResult>( object: any, path: StringRepresentable|StringRepresentable[], ...args: any[]): TResult; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.invoke **/ invoke<TResult>( path: StringRepresentable|StringRepresentable[], ...args: any[]): TResult; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.invoke **/ invoke<TResult>( path: StringRepresentable|StringRepresentable[], ...args: any[]): TResult; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.invoke **/ invoke<TResult>( path: StringRepresentable|StringRepresentable[], ...args: any[]): TResult; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.invoke **/ invoke<TResult>( path: StringRepresentable|StringRepresentable[], ...args: any[]): TResult; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.invokeMap interface LoDashStatic { /** * Invokes the method named by methodName on each element in the collection returning * an array of the results of each invoked method. Additional arguments will be provided * to each invoked method. If methodName is a function it will be invoked for, and this * bound to, each element in the collection. * @param collection The collection to iterate over. * @param methodName The name of the method to invoke. * @param args Arguments to invoke the method with. **/ invokeMap<TValue extends {}, TResult>( collection: TValue[], methodName: string, ...args: any[]): TResult[]; /** * @see _.invokeMap **/ invokeMap<TValue extends {}, TResult>( collection: Dictionary<TValue>, methodName: string, ...args: any[]): TResult[]; /** * @see _.invokeMap **/ invokeMap<TResult>( collection: {}[], methodName: string, ...args: any[]): TResult[]; /** * @see _.invokeMap **/ invokeMap<TResult>( collection: Dictionary<{}>, methodName: string, ...args: any[]): TResult[]; /** * @see _.invokeMap **/ invokeMap<TValue extends {}, TResult>( collection: TValue[], method: (...args: any[]) => TResult, ...args: any[]): TResult[]; /** * @see _.invokeMap **/ invokeMap<TValue extends {}, TResult>( collection: Dictionary<TValue>, method: (...args: any[]) => TResult, ...args: any[]): TResult[]; /** * @see _.invokeMap **/ invokeMap<TResult>( collection: {}[], method: (...args: any[]) => TResult, ...args: any[]): TResult[]; /** * @see _.invokeMap **/ invokeMap<TResult>( collection: Dictionary<{}>, method: (...args: any[]) => TResult, ...args: any[]): TResult[]; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.invokeMap **/ invokeMap<TResult>( methodName: string, ...args: any[]): LoDashImplicitArrayWrapper<TResult>; /** * @see _.invokeMap **/ invokeMap<TResult>( method: (...args: any[]) => TResult, ...args: any[]): LoDashImplicitArrayWrapper<TResult>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.invokeMap **/ invokeMap<TResult>( methodName: string, ...args: any[]): LoDashImplicitArrayWrapper<TResult>; /** * @see _.invokeMap **/ invokeMap<TResult>( method: (...args: any[]) => TResult, ...args: any[]): LoDashImplicitArrayWrapper<TResult>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.invokeMap **/ invokeMap<TResult>( methodName: string, ...args: any[]): LoDashExplicitArrayWrapper<TResult>; /** * @see _.invokeMap **/ invokeMap<TResult>( method: (...args: any[]) => TResult, ...args: any[]): LoDashExplicitArrayWrapper<TResult>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.invokeMap **/ invokeMap<TResult>( methodName: string, ...args: any[]): LoDashExplicitArrayWrapper<TResult>; /** * @see _.invokeMap **/ invokeMap<TResult>( method: (...args: any[]) => TResult, ...args: any[]): LoDashExplicitArrayWrapper<TResult>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.map interface LoDashStatic { /** * Creates an array of values by running each element in collection through iteratee. The iteratee is bound to * thisArg and invoked with three arguments: (value, index|key, collection). * * If a property name is provided for iteratee the created _.property style callback returns the property value * of the given element. * * If a value is also provided for thisArg the created _.matchesProperty style callback returns true for * elements that have a matching property value, else false. * * If an object is provided for iteratee the created _.matches style callback returns true for elements that * have the properties of the given object, else false. * * Many lodash methods are guarded to work as iteratees for methods like _.every, _.filter, _.map, _.mapValues, * _.reject, and _.some. * * The guarded methods are: * ary, callback, chunk, clone, create, curry, curryRight, drop, dropRight, every, fill, flatten, invert, max, * min, parseInt, slice, sortBy, take, takeRight, template, trim, trimLeft, trimRight, trunc, random, range, * sample, some, sum, uniq, and words * * @param collection The collection to iterate over. * @param iteratee The function invoked per iteration. * @param thisArg The this binding of iteratee. * @return Returns the new mapped array. */ map<T, TResult>( collection: List<T>, iteratee?: ListIterator<T, TResult>, thisArg?: any ): TResult[]; /** * @see _.map */ map<T extends {}, TResult>( collection: Dictionary<T>, iteratee?: DictionaryIterator<T, TResult>, thisArg?: any ): TResult[]; map<T extends {}, TResult>( collection: NumericDictionary<T>, iteratee?: NumericDictionaryIterator<T, TResult>, thisArg?: any ): TResult[]; /** * @see _.map */ map<T, TResult>( collection: List<T>|Dictionary<T>|NumericDictionary<T>, iteratee?: string ): TResult[]; /** * @see _.map */ map<T, TObject extends {}>( collection: List<T>|Dictionary<T>|NumericDictionary<T>, iteratee?: TObject ): boolean[]; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.map */ map<TResult>( iteratee?: ListIterator<T, TResult>, thisArg?: any ): LoDashImplicitArrayWrapper<TResult>; /** * @see _.map */ map<TResult>( iteratee?: string ): LoDashImplicitArrayWrapper<TResult>; /** * @see _.map */ map<TObject extends {}>( iteratee?: TObject ): LoDashImplicitArrayWrapper<boolean>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.map */ map<TValue, TResult>( iteratee?: ListIterator<TValue, TResult>|DictionaryIterator<TValue, TResult>, thisArg?: any ): LoDashImplicitArrayWrapper<TResult>; /** * @see _.map */ map<TValue, TResult>( iteratee?: string ): LoDashImplicitArrayWrapper<TResult>; /** * @see _.map */ map<TObject extends {}>( iteratee?: TObject ): LoDashImplicitArrayWrapper<boolean>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.map */ map<TResult>( iteratee?: ListIterator<T, TResult>, thisArg?: any ): LoDashExplicitArrayWrapper<TResult>; /** * @see _.map */ map<TResult>( iteratee?: string ): LoDashExplicitArrayWrapper<TResult>; /** * @see _.map */ map<TObject extends {}>( iteratee?: TObject ): LoDashExplicitArrayWrapper<boolean>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.map */ map<TValue, TResult>( iteratee?: ListIterator<TValue, TResult>|DictionaryIterator<TValue, TResult>, thisArg?: any ): LoDashExplicitArrayWrapper<TResult>; /** * @see _.map */ map<TValue, TResult>( iteratee?: string ): LoDashExplicitArrayWrapper<TResult>; /** * @see _.map */ map<TObject extends {}>( iteratee?: TObject ): LoDashExplicitArrayWrapper<boolean>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.partition interface LoDashStatic { /** * Creates an array of elements split into two groups, the first of which contains elements predicate returns truthy for, * while the second of which contains elements predicate returns falsey for. * The predicate is bound to thisArg and invoked with three arguments: (value, index|key, collection). * * If a property name is provided for predicate the created _.property style callback * returns the property value of the given element. * * If a value is also provided for thisArg the created _.matchesProperty style callback * returns true for elements that have a matching property value, else false. * * If an object is provided for predicate the created _.matches style callback returns * true for elements that have the properties of the given object, else false. * * @param collection The collection to iterate over. * @param callback The function called per iteration. * @param thisArg The this binding of predicate. * @return Returns the array of grouped elements. **/ partition<T>( collection: List<T>, callback: ListIterator<T, boolean>, thisArg?: any): T[][]; /** * @see _.partition **/ partition<T>( collection: Dictionary<T>, callback: DictionaryIterator<T, boolean>, thisArg?: any): T[][]; /** * @see _.partition **/ partition<W, T>( collection: List<T>, whereValue: W): T[][]; /** * @see _.partition **/ partition<W, T>( collection: Dictionary<T>, whereValue: W): T[][]; /** * @see _.partition **/ partition<T>( collection: List<T>, path: string, srcValue: any): T[][]; /** * @see _.partition **/ partition<T>( collection: Dictionary<T>, path: string, srcValue: any): T[][]; /** * @see _.partition **/ partition<T>( collection: List<T>, pluckValue: string): T[][]; /** * @see _.partition **/ partition<T>( collection: Dictionary<T>, pluckValue: string): T[][]; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitStringWrapper { /** * @see _.partition */ partition( callback: ListIterator<string, boolean>, thisArg?: any): LoDashImplicitArrayWrapper<string[]>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.partition */ partition( callback: ListIterator<T, boolean>, thisArg?: any): LoDashImplicitArrayWrapper<T[]>; /** * @see _.partition */ partition<W>( whereValue: W): LoDashImplicitArrayWrapper<T[]>; /** * @see _.partition */ partition( path: string, srcValue: any): LoDashImplicitArrayWrapper<T[]>; /** * @see _.partition */ partition( pluckValue: string): LoDashImplicitArrayWrapper<T[]>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.partition */ partition<TResult>( callback: ListIterator<TResult, boolean>, thisArg?: any): LoDashImplicitArrayWrapper<TResult[]>; /** * @see _.partition */ partition<TResult>( callback: DictionaryIterator<TResult, boolean>, thisArg?: any): LoDashImplicitArrayWrapper<TResult[]>; /** * @see _.partition */ partition<W, TResult>( whereValue: W): LoDashImplicitArrayWrapper<TResult[]>; /** * @see _.partition */ partition<TResult>( path: string, srcValue: any): LoDashImplicitArrayWrapper<TResult[]>; /** * @see _.partition */ partition<TResult>( pluckValue: string): LoDashImplicitArrayWrapper<TResult[]>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.reduce interface LoDashStatic { /** * Reduces a collection to a value which is the accumulated result of running each * element in the collection through the callback, where each successive callback execution * consumes the return value of the previous execution. If accumulator is not provided the * first element of the collection will be used as the initial accumulator value. The callback * is bound to thisArg and invoked with four arguments; (accumulator, value, index|key, collection). * @param collection The collection to iterate over. * @param callback The function called per iteration. * @param accumulator Initial value of the accumulator. * @param thisArg The this binding of callback. * @return Returns the accumulated value. **/ reduce<T, TResult>( collection: Array<T>, callback: MemoIterator<T, TResult>, accumulator: TResult, thisArg?: any): TResult; /** * @see _.reduce **/ reduce<T, TResult>( collection: List<T>, callback: MemoIterator<T, TResult>, accumulator: TResult, thisArg?: any): TResult; /** * @see _.reduce **/ reduce<T, TResult>( collection: Dictionary<T>, callback: MemoIterator<T, TResult>, accumulator: TResult, thisArg?: any): TResult; /** * @see _.reduce **/ reduce<T, TResult>( collection: NumericDictionary<T>, callback: MemoIterator<T, TResult>, accumulator: TResult, thisArg?: any): TResult; /** * @see _.reduce **/ reduce<T, TResult>( collection: Array<T>, callback: MemoIterator<T, TResult>, thisArg?: any): TResult; /** * @see _.reduce **/ reduce<T, TResult>( collection: List<T>, callback: MemoIterator<T, TResult>, thisArg?: any): TResult; /** * @see _.reduce **/ reduce<T, TResult>( collection: Dictionary<T>, callback: MemoIterator<T, TResult>, thisArg?: any): TResult; /** * @see _.reduce **/ reduce<T, TResult>( collection: NumericDictionary<T>, callback: MemoIterator<T, TResult>, thisArg?: any): TResult; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.reduce **/ reduce<TResult>( callback: MemoIterator<T, TResult>, accumulator: TResult, thisArg?: any): TResult; /** * @see _.reduce **/ reduce<TResult>( callback: MemoIterator<T, TResult>, thisArg?: any): TResult; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.reduce **/ reduce<TValue, TResult>( callback: MemoIterator<TValue, TResult>, accumulator: TResult, thisArg?: any): TResult; /** * @see _.reduce **/ reduce<TValue, TResult>( callback: MemoIterator<TValue, TResult>, thisArg?: any): TResult; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.reduceRight interface LoDashStatic { /** * This method is like _.reduce except that it iterates over elements of a collection from * right to left. * @param collection The collection to iterate over. * @param callback The function called per iteration. * @param accumulator Initial value of the accumulator. * @param thisArg The this binding of callback. * @return The accumulated value. **/ reduceRight<T, TResult>( collection: Array<T>, callback: MemoIterator<T, TResult>, accumulator: TResult, thisArg?: any): TResult; /** * @see _.reduceRight **/ reduceRight<T, TResult>( collection: List<T>, callback: MemoIterator<T, TResult>, accumulator: TResult, thisArg?: any): TResult; /** * @see _.reduceRight **/ reduceRight<T, TResult>( collection: Dictionary<T>, callback: MemoIterator<T, TResult>, accumulator: TResult, thisArg?: any): TResult; /** * @see _.reduceRight **/ reduceRight<T, TResult>( collection: Array<T>, callback: MemoIterator<T, TResult>, thisArg?: any): TResult; /** * @see _.reduceRight **/ reduceRight<T, TResult>( collection: List<T>, callback: MemoIterator<T, TResult>, thisArg?: any): TResult; /** * @see _.reduceRight **/ reduceRight<T, TResult>( collection: Dictionary<T>, callback: MemoIterator<T, TResult>, thisArg?: any): TResult; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.reject interface LoDashStatic { /** * The opposite of _.filter; this method returns the elements of collection that predicate does not return * truthy for. * * @param collection The collection to iterate over. * @param predicate The function invoked per iteration. * @param thisArg The this binding of predicate. * @return Returns the new filtered array. */ reject<T>( collection: List<T>, predicate?: ListIterator<T, boolean>, thisArg?: any ): T[]; /** * @see _.reject */ reject<T>( collection: Dictionary<T>, predicate?: DictionaryIterator<T, boolean>, thisArg?: any ): T[]; /** * @see _.reject */ reject( collection: string, predicate?: StringIterator<boolean>, thisArg?: any ): string[]; /** * @see _.reject */ reject<T>( collection: List<T>|Dictionary<T>, predicate: string, thisArg?: any ): T[]; /** * @see _.reject */ reject<W extends {}, T>( collection: List<T>|Dictionary<T>, predicate: W ): T[]; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitWrapper<T> { /** * @see _.reject */ reject( predicate?: StringIterator<boolean>, thisArg?: any ): LoDashImplicitArrayWrapper<string>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.reject */ reject( predicate: ListIterator<T, boolean>, thisArg?: any ): LoDashImplicitArrayWrapper<T>; /** * @see _.reject */ reject( predicate: string, thisArg?: any ): LoDashImplicitArrayWrapper<T>; /** * @see _.reject */ reject<W>(predicate: W): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.reject */ reject<T>( predicate: ListIterator<T, boolean>|DictionaryIterator<T, boolean>, thisArg?: any ): LoDashImplicitArrayWrapper<T>; /** * @see _.reject */ reject<T>( predicate: string, thisArg?: any ): LoDashImplicitArrayWrapper<T>; /** * @see _.reject */ reject<W, T>(predicate: W): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitWrapper<T> { /** * @see _.reject */ reject( predicate?: StringIterator<boolean>, thisArg?: any ): LoDashExplicitArrayWrapper<string>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.reject */ reject( predicate: ListIterator<T, boolean>, thisArg?: any ): LoDashExplicitArrayWrapper<T>; /** * @see _.reject */ reject( predicate: string, thisArg?: any ): LoDashExplicitArrayWrapper<T>; /** * @see _.reject */ reject<W>(predicate: W): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.reject */ reject<T>( predicate: ListIterator<T, boolean>|DictionaryIterator<T, boolean>, thisArg?: any ): LoDashExplicitArrayWrapper<T>; /** * @see _.reject */ reject<T>( predicate: string, thisArg?: any ): LoDashExplicitArrayWrapper<T>; /** * @see _.reject */ reject<W, T>(predicate: W): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.sample interface LoDashStatic { /** * Gets a random element from `collection`. * * @static * @memberOf _ * @category Collection * @param {Array|Object} collection The collection to sample. * @returns {*} Returns the random element. * @example * * _.sample([1, 2, 3, 4]); * // => 2 */ sample<T>(collection: Array<T>): T; /** * @see _.sample **/ sample<T>(collection: List<T>): T; /** * @see _.sample **/ sample<T>(collection: Dictionary<T>): T; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.sample **/ sample(): LoDashImplicitWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.sampleSize interface LoDashStatic { /** * Gets `n` random elements from `collection`. * * @static * @memberOf _ * @category Collection * @param {Array|Object} collection The collection to sample. * @param {number} [n=0] The number of elements to sample. * @returns {Array} Returns the random elements. * @example * * _.sampleSize([1, 2, 3, 4], 2); * // => [3, 1] */ sampleSize<T>(collection: Array<T>, n: number): T[]; /** * @see _.sampleSize **/ sampleSize<T>(collection: List<T>, n: number): T[]; /** * @see _.sampleSize **/ sampleSize<T>(collection: Dictionary<T>, n: number): T[]; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.sampleSize **/ sampleSize(n: number): LoDashImplicitArrayWrapper<T>; /** * @see _.sampleSize **/ sampleSize(): LoDashImplicitWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.shuffle interface LoDashStatic { /** * Creates an array of shuffled values, using a version of the Fisher-Yates shuffle. * * @param collection The collection to shuffle. * @return Returns the new shuffled array. */ shuffle<T>(collection: List<T>|Dictionary<T>): T[]; /** * @see _.shuffle */ shuffle(collection: string): string[]; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript