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 collectio...
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[] ...
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 */ ...
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( predicat...
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 _....
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 pro...
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...
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 */ fi...
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...
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 */ fi...
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...
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 ...
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<TResul...
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 ...
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>( whereValu...
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). * ...
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...
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>...
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>; ...
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...
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>...
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>; ...
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 returnin...
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 ...
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 boun...
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>(...
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 ...
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>(...
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 ...
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...
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...
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?: s...
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>>; /** *...
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?: s...
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>>; /** *...
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>(...
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...
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: ...
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:...
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: ...
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:...
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 c...
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>( itera...
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 ...
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>( itera...
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 ...
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 ...
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:...
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<TRes...
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 no...
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>( ...
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...
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 accumu...
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...
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...
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 */ re...
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...
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 */ re...
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. * @e...
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...
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>|Dictionar...
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript