type
stringclasses
7 values
content
stringlengths
4
9.55k
repo
stringlengths
7
96
path
stringlengths
4
178
language
stringclasses
1 value
InterfaceDeclaration
interface LoDashExplicitWrapper<T> { /** * @see _.last */ last(): LoDashExplicitWrapper<string>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.last */ last<T>(): T; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.last */ last<T>(): T; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.lastIndexOf interface LoDashStatic { /** * This method is like _.indexOf except that it iterates over elements of array from right to left. * * @param array The array to search. * @param value The value to search for. * @param fromIndex The index to search from or true to perform a binary search on a sorted array. * @return Returns the index of the matched value, else -1. */ lastIndexOf<T>( array: List<T>, value: T, fromIndex?: boolean|number ): number; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.lastIndexOf */ lastIndexOf( value: T, fromIndex?: boolean|number ): number; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.lastIndexOf */ lastIndexOf<TResult>( value: TResult, fromIndex?: boolean|number ): number; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.lastIndexOf */ lastIndexOf( value: T, fromIndex?: boolean|number ): LoDashExplicitWrapper<number>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.lastIndexOf */ lastIndexOf<TResult>( value: TResult, fromIndex?: boolean|number ): LoDashExplicitWrapper<number>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.pull interface LoDashStatic { /** * Removes all provided values from array using SameValueZero for equality comparisons. * * Note: Unlike _.without, this method mutates array. * * @param array The array to modify. * @param values The values to remove. * @return Returns array. */ pull<T>( array: T[], ...values: T[] ): T[]; /** * @see _.pull */ pull<T>( array: List<T>, ...values: T[] ): List<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.pull */ pull(...values: T[]): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.pull */ pull<TValue>(...values: TValue[]): LoDashImplicitObjectWrapper<List<TValue>>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.pull */ pull(...values: T[]): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.pull */ pull<TValue>(...values: TValue[]): LoDashExplicitObjectWrapper<List<TValue>>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.pullAt interface LoDashStatic { /** * Removes elements from array corresponding to the given indexes and returns an array of the removed elements. * Indexes may be specified as an array of indexes or as individual arguments. * * Note: Unlike _.at, this method mutates array. * * @param array The array to modify. * @param indexes The indexes of elements to remove, specified as individual indexes or arrays of indexes. * @return Returns the new array of removed elements. */ pullAt<T>( array: List<T>, ...indexes: (number|number[])[] ): T[]; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.pullAt */ pullAt(...indexes: (number|number[])[]): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.pullAt */ pullAt<T>(...indexes: (number|number[])[]): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.pullAt */ pullAt(...indexes: (number|number[])[]): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.pullAt */ pullAt<T>(...indexes: (number|number[])[]): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.remove interface LoDashStatic { /** * Removes all elements from array that predicate returns truthy for and returns an array of the removed * elements. The predicate is bound to thisArg and invoked with three arguments: (value, index, array). * * 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. * * Note: Unlike _.filter, this method mutates array. * * @param array The array to modify. * @param predicate The function invoked per iteration. * @param thisArg The this binding of predicate. * @return Returns the new array of removed elements. */ remove<T>( array: List<T>, predicate?: ListIterator<T, boolean>, thisArg?: any ): T[]; /** * @see _.remove */ remove<T>( array: List<T>, predicate?: string, thisArg?: any ): T[]; /** * @see _.remove */ remove<W, T>( array: List<T>, predicate?: W ): T[]; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.remove */ remove( predicate?: ListIterator<T, boolean>, thisArg?: any ): LoDashImplicitArrayWrapper<T>; /** * @see _.remove */ remove( predicate?: string, thisArg?: any ): LoDashImplicitArrayWrapper<T>; /** * @see _.remove */ remove<W>( predicate?: W ): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.remove */ remove<TResult>( predicate?: ListIterator<TResult, boolean>, thisArg?: any ): LoDashImplicitArrayWrapper<TResult>; /** * @see _.remove */ remove<TResult>( predicate?: string, thisArg?: any ): LoDashImplicitArrayWrapper<TResult>; /** * @see _.remove */ remove<W, TResult>( predicate?: W ): LoDashImplicitArrayWrapper<TResult>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.remove */ remove( predicate?: ListIterator<T, boolean>, thisArg?: any ): LoDashExplicitArrayWrapper<T>; /** * @see _.remove */ remove( predicate?: string, thisArg?: any ): LoDashExplicitArrayWrapper<T>; /** * @see _.remove */ remove<W>( predicate?: W ): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.remove */ remove<TResult>( predicate?: ListIterator<TResult, boolean>, thisArg?: any ): LoDashExplicitArrayWrapper<TResult>; /** * @see _.remove */ remove<TResult>( predicate?: string, thisArg?: any ): LoDashExplicitArrayWrapper<TResult>; /** * @see _.remove */ remove<W, TResult>( predicate?: W ): LoDashExplicitArrayWrapper<TResult>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.tail interface LoDashStatic { /** * Gets all but the first element of array. * * @alias _.tail * * @param array The array to query. * @return Returns the slice of array. */ tail<T>(array: List<T>): T[]; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.tail */ tail(): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.tail */ tail<T>(): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.tail */ tail(): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.tail */ tail<T>(): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.slice interface LoDashStatic { /** * Creates a slice of array from start up to, but not including, end. * * @param array The array to slice. * @param start The start position. * @param end The end position. * @return Returns the slice of array. */ slice<T>( array: T[], start?: number, end?: number ): T[]; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.slice */ slice( start?: number, end?: number ): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.slice */ slice( start?: number, end?: number ): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.sortedIndex interface LoDashStatic { /** * Uses a binary search to determine the lowest index at which `value` should * be inserted into `array` in order to maintain its sort order. * * @static * @memberOf _ * @category Array * @param {Array} array The sorted array to inspect. * @param {*} value The value to evaluate. * @returns {number} Returns the index at which `value` should be inserted into `array`. * @example * * _.sortedIndex([30, 50], 40); * // => 1 * * _.sortedIndex([4, 5], 4); * // => 0 */ sortedIndex<T, TSort>( array: List<T>, value: T ): number; /** * @see _.sortedIndex */ sortedIndex<T>( array: List<T>, value: T ): number; /** * @see _.sortedIndex */ sortedIndex<T>( array: List<T>, value: T ): number; /** * @see _.sortedIndex */ sortedIndex<W, T>( array: List<T>, value: T ): number; /** * @see _.sortedIndex */ sortedIndex<T>( array: List<T>, value: T ): number; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitWrapper<T> { /** * @see _.sortedIndex */ sortedIndex<TSort>( value: string ): number; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.sortedIndex */ sortedIndex<TSort>( value: T ): number; /** * @see _.sortedIndex */ sortedIndex( value: T ): number; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.sortedIndex */ sortedIndex<T, TSort>( value: T ): number; /** * @see _.sortedIndex */ sortedIndex<T>( value: T ): number; /** * @see _.sortedIndex */ sortedIndex<W, T>( value: T ): number; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitWrapper<T> { /** * @see _.sortedIndex */ sortedIndex<TSort>( value: string ): LoDashExplicitWrapper<number>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.sortedIndex */ sortedIndex<TSort>( value: T ): LoDashExplicitWrapper<number>; /** * @see _.sortedIndex */ sortedIndex( value: T ): LoDashExplicitWrapper<number>; /** * @see _.sortedIndex */ sortedIndex<W>( value: T ): LoDashExplicitWrapper<number>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.sortedIndex */ sortedIndex<T, TSort>( value: T ): LoDashExplicitWrapper<number>; /** * @see _.sortedIndex */ sortedIndex<T>( value: T ): LoDashExplicitWrapper<number>; /** * @see _.sortedIndex */ sortedIndex<W, T>( value: T ): LoDashExplicitWrapper<number>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.sortedIndexBy interface LoDashStatic { /** * This method is like `_.sortedIndex` except that it accepts `iteratee` * which is invoked for `value` and each element of `array` to compute their * sort ranking. The iteratee is invoked with one argument: (value). * * @static * @memberOf _ * @category Array * @param {Array} array The sorted array to inspect. * @param {*} value The value to evaluate. * @param {Function|Object|string} [iteratee=_.identity] The iteratee invoked per element. * @returns {number} Returns the index at which `value` should be inserted into `array`. * @example * * var dict = { 'thirty': 30, 'forty': 40, 'fifty': 50 }; * * _.sortedIndexBy(['thirty', 'fifty'], 'forty', _.propertyOf(dict)); * // => 1 * * // using the `_.property` iteratee shorthand * _.sortedIndexBy([{ 'x': 4 }, { 'x': 5 }], { 'x': 4 }, 'x'); * // => 0 */ sortedIndexBy<T, TSort>( array: List<T>, value: T, iteratee: (x: T) => TSort ): number; /** * @see _.sortedIndexBy */ sortedIndexBy<T>( array: List<T>, value: T, iteratee: (x: T) => any ): number; /** * @see _.sortedIndexBy */ sortedIndexBy<T>( array: List<T>, value: T, iteratee: string ): number; /** * @see _.sortedIndexBy */ sortedIndexBy<W, T>( array: List<T>, value: T, iteratee: W ): number; /** * @see _.sortedIndexBy */ sortedIndexBy<T>( array: List<T>, value: T, iteratee: Object ): number; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitWrapper<T> { /** * @see _.sortedIndexBy */ sortedIndexBy<TSort>( value: string, iteratee: (x: string) => TSort ): number; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.sortedIndexBy */ sortedIndexBy<TSort>( value: T, iteratee: (x: T) => TSort ): number; /** * @see _.sortedIndexBy */ sortedIndexBy( value: T, iteratee: string ): number; /** * @see _.sortedIndexBy */ sortedIndexBy<W>( value: T, iteratee: W ): number; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.sortedIndexBy */ sortedIndexBy<T, TSort>( value: T, iteratee: (x: T) => TSort ): number; /** * @see _.sortedIndexBy */ sortedIndexBy<T>( value: T, iteratee: (x: T) => any ): number; /** * @see _.sortedIndexBy */ sortedIndexBy<T>( value: T, iteratee: string ): number; /** * @see _.sortedIndexBy */ sortedIndexBy<W, T>( value: T, iteratee: W ): number; /** * @see _.sortedIndexBy */ sortedIndexBy<T>( value: T, iteratee: Object ): number; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitWrapper<T> { /** * @see _.sortedIndexBy */ sortedIndexBy<TSort>( value: string, iteratee: (x: string) => TSort ): LoDashExplicitWrapper<number>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.sortedIndexBy */ sortedIndexBy<TSort>( value: T, iteratee: (x: T) => TSort ): LoDashExplicitWrapper<number>; /** * @see _.sortedIndexBy */ sortedIndexBy( value: T, iteratee: string ): LoDashExplicitWrapper<number>; /** * @see _.sortedIndexBy */ sortedIndexBy<W>( value: T, iteratee: W ): LoDashExplicitWrapper<number>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.sortedIndexBy */ sortedIndexBy<T, TSort>( value: T, iteratee: (x: T) => TSort ): LoDashExplicitWrapper<number>; /** * @see _.sortedIndexBy */ sortedIndexBy<T>( value: T, iteratee: (x: T) => any ): LoDashExplicitWrapper<number>; /** * @see _.sortedIndexBy */ sortedIndexBy<T>( value: T, iteratee: string ): LoDashExplicitWrapper<number>; /** * @see _.sortedIndexBy */ sortedIndexBy<W, T>( value: T, iteratee: W ): LoDashExplicitWrapper<number>; /** * @see _.sortedIndexBy */ sortedIndexBy<T>( value: T, iteratee: Object ): LoDashExplicitWrapper<number>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.sortedLastIndex interface LoDashStatic { /** * This method is like `_.sortedIndex` except that it returns the highest * index at which `value` should be inserted into `array` in order to * maintain its sort order. * * @static * @memberOf _ * @category Array * @param {Array} array The sorted array to inspect. * @param {*} value The value to evaluate. * @returns {number} Returns the index at which `value` should be inserted into `array`. * @example * * _.sortedLastIndex([4, 5], 4); * // => 1 */ sortedLastIndex<T, TSort>( array: List<T>, value: T ): number; /** * @see _.sortedLastIndex */ sortedLastIndex<T>( array: List<T>, value: T ): number; /** * @see _.sortedLastIndex */ sortedLastIndex<T>( array: List<T>, value: T ): number; /** * @see _.sortedLastIndex */ sortedLastIndex<W, T>( array: List<T>, value: T ): number; /** * @see _.sortedLastIndex */ sortedLastIndex<T>( array: List<T>, value: T ): number; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitWrapper<T> { /** * @see _.sortedLastIndex */ sortedLastIndex<TSort>( value: string ): number; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.sortedLastIndex */ sortedLastIndex<TSort>( value: T ): number; /** * @see _.sortedLastIndex */ sortedLastIndex( value: T ): number; /** * @see _.sortedLastIndex */ sortedLastIndex<W>( value: T ): number; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.sortedLastIndex */ sortedLastIndex<T, TSort>( value: T ): number; /** * @see _.sortedLastIndex */ sortedLastIndex<T>( value: T ): number; /** * @see _.sortedLastIndex */ sortedLastIndex<W, T>( value: T ): number; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitWrapper<T> { /** * @see _.sortedLastIndex */ sortedLastIndex<TSort>( value: string ): LoDashExplicitWrapper<number>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.sortedLastIndex */ sortedLastIndex<TSort>( value: T ): LoDashExplicitWrapper<number>; /** * @see _.sortedLastIndex */ sortedLastIndex( value: T ): LoDashExplicitWrapper<number>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.sortedLastIndex */ sortedLastIndex<T, TSort>( value: T ): LoDashExplicitWrapper<number>; /** * @see _.sortedLastIndex */ sortedLastIndex<T>( value: T ): LoDashExplicitWrapper<number>; /** * @see _.sortedLastIndex */ sortedLastIndex<W, T>( value: T ): LoDashExplicitWrapper<number>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.sortedLastIndexBy interface LoDashStatic { /** * This method is like `_.sortedLastIndex` except that it accepts `iteratee` * which is invoked for `value` and each element of `array` to compute their * sort ranking. The iteratee is invoked with one argument: (value). * * @static * @memberOf _ * @category Array * @param {Array} array The sorted array to inspect. * @param {*} value The value to evaluate. * @param {Function|Object|string} [iteratee=_.identity] The iteratee invoked per element. * @returns {number} Returns the index at which `value` should be inserted into `array`. * @example * * // using the `_.property` iteratee shorthand * _.sortedLastIndexBy([{ 'x': 4 }, { 'x': 5 }], { 'x': 4 }, 'x'); * // => 1 */ sortedLastIndexBy<T, TSort>( array: List<T>, value: T, iteratee: (x: T) => TSort ): number; /** * @see _.sortedLastIndexBy */ sortedLastIndexBy<T>( array: List<T>, value: T, iteratee: (x: T) => any ): number; /** * @see _.sortedLastIndexBy */ sortedLastIndexBy<T>( array: List<T>, value: T, iteratee: string ): number; /** * @see _.sortedLastIndexBy */ sortedLastIndexBy<W, T>( array: List<T>, value: T, iteratee: W ): number; /** * @see _.sortedLastIndexBy */ sortedLastIndexBy<T>( array: List<T>, value: T, iteratee: Object ): number; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitWrapper<T> { /** * @see _.sortedLastIndexBy */ sortedLastIndexBy<TSort>( value: string, iteratee: (x: string) => TSort ): number; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.sortedLastIndexBy */ sortedLastIndexBy<TSort>( value: T, iteratee: (x: T) => TSort ): number; /** * @see _.sortedLastIndexBy */ sortedLastIndexBy( value: T, iteratee: string ): number; /** * @see _.sortedLastIndexBy */ sortedLastIndexBy<W>( value: T, iteratee: W ): number; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.sortedLastIndexBy */ sortedLastIndexBy<T, TSort>( value: T, iteratee: (x: T) => TSort ): number; /** * @see _.sortedLastIndexBy */ sortedLastIndexBy<T>( value: T, iteratee: (x: T) => any ): number; /** * @see _.sortedLastIndexBy */ sortedLastIndexBy<T>( value: T, iteratee: string ): number; /** * @see _.sortedLastIndexBy */ sortedLastIndexBy<W, T>( value: T, iteratee: W ): number; /** * @see _.sortedLastIndexBy */ sortedLastIndexBy<T>( value: T, iteratee: Object ): number; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitWrapper<T> { /** * @see _.sortedLastIndexBy */ sortedLastIndexBy<TSort>( value: string, iteratee: (x: string) => TSort ): LoDashExplicitWrapper<number>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.sortedLastIndexBy */ sortedLastIndexBy<TSort>( value: T, iteratee: (x: T) => TSort ): LoDashExplicitWrapper<number>; /** * @see _.sortedLastIndexBy */ sortedLastIndexBy( value: T, iteratee: string ): LoDashExplicitWrapper<number>; /** * @see _.sortedLastIndexBy */ sortedLastIndexBy<W>( value: T, iteratee: W ): LoDashExplicitWrapper<number>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.sortedLastIndexBy */ sortedLastIndexBy<T, TSort>( value: T, iteratee: (x: T) => TSort ): LoDashExplicitWrapper<number>; /** * @see _.sortedLastIndexBy */ sortedLastIndexBy<T>( value: T, iteratee: (x: T) => any ): LoDashExplicitWrapper<number>; /** * @see _.sortedLastIndexBy */ sortedLastIndexBy<T>( value: T, iteratee: string ): LoDashExplicitWrapper<number>; /** * @see _.sortedLastIndexBy */ sortedLastIndexBy<W, T>( value: T, iteratee: W ): LoDashExplicitWrapper<number>; /** * @see _.sortedLastIndexBy */ sortedLastIndexBy<T>( value: T, iteratee: Object ): LoDashExplicitWrapper<number>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.sortedLastIndexOf DUMMY interface LoDashStatic { /** * This method is like `_.lastIndexOf` except that it performs a binary * search on a sorted `array`. * * @static * @memberOf _ * @category Array * @param {Array} array The array to search. * @param {*} value The value to search for. * @returns {number} Returns the index of the matched value, else `-1`. * @example * * _.sortedLastIndexOf([1, 1, 2, 2], 2); * // => 3 */ sortedLastIndexOf( array: any[]|List<any>, ...values: any[] ): any[]; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.tail interface LoDashStatic { /** * @see _.rest */ tail<T>(array: List<T>): T[]; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.rest */ tail(): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.rest */ tail<T>(): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.rest */ tail(): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.rest */ tail<T>(): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.take interface LoDashStatic { /** * Creates a slice of array with n elements taken from the beginning. * * @param array The array to query. * @param n The number of elements to take. * @return Returns the slice of array. */ take<T>( array: List<T>, n?: number ): T[]; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.take */ take(n?: number): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.take */ take<TResult>(n?: number): LoDashImplicitArrayWrapper<TResult>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.take */ take(n?: number): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.take */ take<TResult>(n?: number): LoDashExplicitArrayWrapper<TResult>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.takeRight interface LoDashStatic { /** * Creates a slice of array with n elements taken from the end. * * @param array The array to query. * @param n The number of elements to take. * @return Returns the slice of array. */ takeRight<T>( array: List<T>, n?: number ): T[]; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.takeRight */ takeRight(n?: number): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.takeRight */ takeRight<TResult>(n?: number): LoDashImplicitArrayWrapper<TResult>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.takeRight */ takeRight(n?: number): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.takeRight */ takeRight<TResult>(n?: number): LoDashExplicitArrayWrapper<TResult>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.takeRightWhile interface LoDashStatic { /** * Creates a slice of array with elements taken from the end. Elements are taken until predicate returns * falsey. The predicate is bound to thisArg and invoked with three arguments: (value, index, array). * * 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 array The array to query. * @param predicate The function invoked per iteration. * @param thisArg The this binding of predicate. * @return Returns the slice of array. */ takeRightWhile<TValue>( array: List<TValue>, predicate?: ListIterator<TValue, boolean>, thisArg?: any ): TValue[]; /** * @see _.takeRightWhile */ takeRightWhile<TValue>( array: List<TValue>, predicate?: string, thisArg?: any ): TValue[]; /** * @see _.takeRightWhile */ takeRightWhile<TWhere, TValue>( array: List<TValue>, predicate?: TWhere ): TValue[]; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.takeRightWhile */ takeRightWhile( predicate?: ListIterator<T, boolean>, thisArg?: any ): LoDashImplicitArrayWrapper<T>; /** * @see _.takeRightWhile */ takeRightWhile( predicate?: string, thisArg?: any ): LoDashImplicitArrayWrapper<T>; /** * @see _.takeRightWhile */ takeRightWhile<TWhere>( predicate?: TWhere ): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.takeRightWhile */ takeRightWhile<TValue>( predicate?: ListIterator<TValue, boolean>, thisArg?: any ): LoDashImplicitArrayWrapper<TValue>; /** * @see _.takeRightWhile */ takeRightWhile<TValue>( predicate?: string, thisArg?: any ): LoDashImplicitArrayWrapper<TValue>; /** * @see _.takeRightWhile */ takeRightWhile<TWhere, TValue>( predicate?: TWhere ): LoDashImplicitArrayWrapper<TValue>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.takeRightWhile */ takeRightWhile( predicate?: ListIterator<T, boolean>, thisArg?: any ): LoDashExplicitArrayWrapper<T>; /** * @see _.takeRightWhile */ takeRightWhile( predicate?: string, thisArg?: any ): LoDashExplicitArrayWrapper<T>; /** * @see _.takeRightWhile */ takeRightWhile<TWhere>( predicate?: TWhere ): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.takeRightWhile */ takeRightWhile<TValue>( predicate?: ListIterator<TValue, boolean>, thisArg?: any ): LoDashExplicitArrayWrapper<TValue>; /** * @see _.takeRightWhile */ takeRightWhile<TValue>( predicate?: string, thisArg?: any ): LoDashExplicitArrayWrapper<TValue>; /** * @see _.takeRightWhile */ takeRightWhile<TWhere, TValue>( predicate?: TWhere ): LoDashExplicitArrayWrapper<TValue>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.takeWhile interface LoDashStatic { /** * Creates a slice of array with elements taken from the beginning. Elements are taken until predicate returns * falsey. The predicate is bound to thisArg and invoked with three arguments: (value, index, array). * * 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 array The array to query. * @param predicate The function invoked per iteration. * @param thisArg The this binding of predicate. * @return Returns the slice of array. */ takeWhile<TValue>( array: List<TValue>, predicate?: ListIterator<TValue, boolean>, thisArg?: any ): TValue[]; /** * @see _.takeWhile */ takeWhile<TValue>( array: List<TValue>, predicate?: string, thisArg?: any ): TValue[]; /** * @see _.takeWhile */ takeWhile<TWhere, TValue>( array: List<TValue>, predicate?: TWhere ): TValue[]; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.takeWhile */ takeWhile( predicate?: ListIterator<T, boolean>, thisArg?: any ): LoDashImplicitArrayWrapper<T>; /** * @see _.takeWhile */ takeWhile( predicate?: string, thisArg?: any ): LoDashImplicitArrayWrapper<T>; /** * @see _.takeWhile */ takeWhile<TWhere>( predicate?: TWhere ): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.takeWhile */ takeWhile<TValue>( predicate?: ListIterator<TValue, boolean>, thisArg?: any ): LoDashImplicitArrayWrapper<TValue>; /** * @see _.takeWhile */ takeWhile<TValue>( predicate?: string, thisArg?: any ): LoDashImplicitArrayWrapper<TValue>; /** * @see _.takeWhile */ takeWhile<TWhere, TValue>( predicate?: TWhere ): LoDashImplicitArrayWrapper<TValue>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.takeWhile */ takeWhile( predicate?: ListIterator<T, boolean>, thisArg?: any ): LoDashExplicitArrayWrapper<T>; /** * @see _.takeWhile */ takeWhile( predicate?: string, thisArg?: any ): LoDashExplicitArrayWrapper<T>; /** * @see _.takeWhile */ takeWhile<TWhere>( predicate?: TWhere ): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.takeWhile */ takeWhile<TValue>( predicate?: ListIterator<TValue, boolean>, thisArg?: any ): LoDashExplicitArrayWrapper<TValue>; /** * @see _.takeWhile */ takeWhile<TValue>( predicate?: string, thisArg?: any ): LoDashExplicitArrayWrapper<TValue>; /** * @see _.takeWhile */ takeWhile<TWhere, TValue>( predicate?: TWhere ): LoDashExplicitArrayWrapper<TValue>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.union interface LoDashStatic { /** * Creates an array of unique values, in order, from all of the provided arrays using SameValueZero for * equality comparisons. * * @param arrays The arrays to inspect. * @return Returns the new array of combined values. */ union<T>(...arrays: List<T>[]): T[]; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.union */ union(...arrays: List<T>[]): LoDashImplicitArrayWrapper<T>; /** * @see _.union */ union<T>(...arrays: List<T>[]): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.union */ union<T>(...arrays: List<T>[]): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.union */ union(...arrays: List<T>[]): LoDashExplicitArrayWrapper<T>; /** * @see _.union */ union<T>(...arrays: List<T>[]): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.union */ union<T>(...arrays: List<T>[]): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.unionBy interface LoDashStatic { /** * This method is like `_.union` except that it accepts `iteratee` which is * invoked for each element of each `arrays` to generate the criterion by which * uniqueness is computed. The iteratee is invoked with one argument: (value). * * @param arrays The arrays to inspect. * @param iteratee The iteratee invoked per element. * @return Returns the new array of combined values. */ unionBy<T>( arrays: T[]|List<T>, iteratee?: (value: T) => any ): T[]; /** * @see _.unionBy */ unionBy<T, W extends Object>( arrays: T[]|List<T>, iteratee?: W ): T[]; /** * @see _.unionBy */ unionBy<T>( arrays1: T[]|List<T>, arrays2: T[]|List<T>, iteratee?: (value: T) => any ): T[]; /** * @see _.unionBy */ unionBy<T, W extends Object>( arrays1: T[]|List<T>, arrays2: T[]|List<T>, iteratee?: W ): T[]; /** * @see _.unionBy */ unionBy<T>( arrays1: T[]|List<T>, arrays2: T[]|List<T>, arrays3: T[]|List<T>, iteratee?: (value: T) => any ): T[]; /** * @see _.unionBy */ unionBy<T, W extends Object>( arrays1: T[]|List<T>, arrays2: T[]|List<T>, arrays3: T[]|List<T>, iteratee?: W ): T[]; /** * @see _.unionBy */ unionBy<T>( arrays1: T[]|List<T>, arrays2: T[]|List<T>, arrays3: T[]|List<T>, arrays4: T[]|List<T>, iteratee?: (value: T) => any ): T[]; /** * @see _.unionBy */ unionBy<T, W extends Object>( arrays1: T[]|List<T>, arrays2: T[]|List<T>, arrays3: T[]|List<T>, arrays4: T[]|List<T>, iteratee?: W ): T[]; /** * @see _.unionBy */ unionBy<T>( arrays1: T[]|List<T>, arrays2: T[]|List<T>, arrays3: T[]|List<T>, arrays4: T[]|List<T>, arrays5: T[]|List<T>, iteratee?: (value: T) => any ): T[]; /** * @see _.unionBy */ unionBy<T, W extends Object>( arrays1: T[]|List<T>, arrays2: T[]|List<T>, arrays3: T[]|List<T>, arrays4: T[]|List<T>, arrays5: T[]|List<T>, iteratee?: W ): T[]; /** * @see _.unionBy */ unionBy<T>( arrays: T[]|List<T>, ...iteratee: any[] ): T[]; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.unionBy */ unionBy<T>( iteratee?: (value: T) => any ): LoDashImplicitArrayWrapper<T>; /** * @see _.unionBy */ unionBy<T, W extends Object>( iteratee?: W ): LoDashImplicitArrayWrapper<T>; /** * @see _.unionBy */ unionBy<T>( arrays2: T[]|List<T>, iteratee?: (value: T) => any ): LoDashImplicitArrayWrapper<T>; /** * @see _.unionBy */ unionBy<T, W extends Object>( arrays2: T[]|List<T>, iteratee?: W ): LoDashImplicitArrayWrapper<T>; /** * @see _.unionBy */ unionBy<T>( arrays2: T[]|List<T>, arrays3: T[]|List<T>, iteratee?: (value: T) => any ): LoDashImplicitArrayWrapper<T>; /** * @see _.unionBy */ unionBy<T, W extends Object>( arrays2: T[]|List<T>, arrays3: T[]|List<T>, iteratee?: W ): LoDashImplicitArrayWrapper<T>; /** * @see _.unionBy */ unionBy<T>( arrays2: T[]|List<T>, arrays3: T[]|List<T>, arrays4: T[]|List<T>, iteratee?: (value: T) => any ): LoDashImplicitArrayWrapper<T>; /** * @see _.unionBy */ unionBy<T, W extends Object>( arrays2: T[]|List<T>, arrays3: T[]|List<T>, arrays4: T[]|List<T>, iteratee?: W ): LoDashImplicitArrayWrapper<T>; /** * @see _.unionBy */ unionBy<T>( arrays2: T[]|List<T>, arrays3: T[]|List<T>, arrays4: T[]|List<T>, arrays5: T[]|List<T>, iteratee?: (value: T) => any ): LoDashImplicitArrayWrapper<T>; /** * @see _.unionBy */ unionBy<T, W extends Object>( arrays2: T[]|List<T>, arrays3: T[]|List<T>, arrays4: T[]|List<T>, arrays5: T[]|List<T>, iteratee?: W ): LoDashImplicitArrayWrapper<T>; /** * @see _.unionBy */ unionBy<T>( ...iteratee: any[] ): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.unionBy */ unionBy<T>( iteratee?: (value: T) => any ): LoDashImplicitArrayWrapper<T>; /** * @see _.unionBy */ unionBy<T, W extends Object>( iteratee?: W ): LoDashImplicitArrayWrapper<T>; /** * @see _.unionBy */ unionBy<T>( arrays2: T[]|List<T>, iteratee?: (value: T) => any ): LoDashImplicitArrayWrapper<T>; /** * @see _.unionBy */ unionBy<T, W extends Object>( arrays2: T[]|List<T>, iteratee?: W ): LoDashImplicitArrayWrapper<T>; /** * @see _.unionBy */ unionBy<T>( arrays2: T[]|List<T>, arrays3: T[]|List<T>, iteratee?: (value: T) => any ): LoDashImplicitArrayWrapper<T>; /** * @see _.unionBy */ unionBy<T, W extends Object>( arrays2: T[]|List<T>, arrays3: T[]|List<T>, iteratee?: W ): LoDashImplicitArrayWrapper<T>; /** * @see _.unionBy */ unionBy<T>( arrays2: T[]|List<T>, arrays3: T[]|List<T>, arrays4: T[]|List<T>, iteratee?: (value: T) => any ): LoDashImplicitArrayWrapper<T>; /** * @see _.unionBy */ unionBy<T, W extends Object>( arrays2: T[]|List<T>, arrays3: T[]|List<T>, arrays4: T[]|List<T>, iteratee?: W ): LoDashImplicitArrayWrapper<T>; /** * @see _.unionBy */ unionBy<T>( arrays2: T[]|List<T>, arrays3: T[]|List<T>, arrays4: T[]|List<T>, arrays5: T[]|List<T>, iteratee?: (value: T) => any ): LoDashImplicitArrayWrapper<T>; /** * @see _.unionBy */ unionBy<T, W extends Object>( arrays2: T[]|List<T>, arrays3: T[]|List<T>, arrays4: T[]|List<T>, arrays5: T[]|List<T>, iteratee?: W ): LoDashImplicitArrayWrapper<T>; /** * @see _.unionBy */ unionBy<T>( ...iteratee: any[] ): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.unionBy */ unionBy<T>( iteratee?: (value: T) => any ): LoDashExplicitArrayWrapper<T>; /** * @see _.unionBy */ unionBy<T, W extends Object>( iteratee?: W ): LoDashExplicitArrayWrapper<T>; /** * @see _.unionBy */ unionBy<T>( arrays2: T[]|List<T>, iteratee?: (value: T) => any ): LoDashExplicitArrayWrapper<T>; /** * @see _.unionBy */ unionBy<T, W extends Object>( arrays2: T[]|List<T>, iteratee?: W ): LoDashExplicitArrayWrapper<T>; /** * @see _.unionBy */ unionBy<T>( arrays2: T[]|List<T>, arrays3: T[]|List<T>, iteratee?: (value: T) => any ): LoDashExplicitArrayWrapper<T>; /** * @see _.unionBy */ unionBy<T, W extends Object>( arrays2: T[]|List<T>, arrays3: T[]|List<T>, iteratee?: W ): LoDashExplicitArrayWrapper<T>; /** * @see _.unionBy */ unionBy<T>( arrays2: T[]|List<T>, arrays3: T[]|List<T>, arrays4: T[]|List<T>, iteratee?: (value: T) => any ): LoDashExplicitArrayWrapper<T>; /** * @see _.unionBy */ unionBy<T, W extends Object>( arrays2: T[]|List<T>, arrays3: T[]|List<T>, arrays4: T[]|List<T>, iteratee?: W ): LoDashExplicitArrayWrapper<T>; /** * @see _.unionBy */ unionBy<T>( arrays2: T[]|List<T>, arrays3: T[]|List<T>, arrays4: T[]|List<T>, arrays5: T[]|List<T>, iteratee?: (value: T) => any ): LoDashExplicitArrayWrapper<T>; /** * @see _.unionBy */ unionBy<T, W extends Object>( arrays2: T[]|List<T>, arrays3: T[]|List<T>, arrays4: T[]|List<T>, arrays5: T[]|List<T>, iteratee?: W ): LoDashExplicitArrayWrapper<T>; /** * @see _.unionBy */ unionBy<T>( ...iteratee: any[] ): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.unionBy */ unionBy<T>( iteratee?: (value: T) => any ): LoDashExplicitArrayWrapper<T>; /** * @see _.unionBy */ unionBy<T, W extends Object>( iteratee?: W ): LoDashExplicitArrayWrapper<T>; /** * @see _.unionBy */ unionBy<T>( arrays2: T[]|List<T>, iteratee?: (value: T) => any ): LoDashExplicitArrayWrapper<T>; /** * @see _.unionBy */ unionBy<T, W extends Object>( arrays2: T[]|List<T>, iteratee?: W ): LoDashExplicitArrayWrapper<T>; /** * @see _.unionBy */ unionBy<T>( arrays2: T[]|List<T>, arrays3: T[]|List<T>, iteratee?: (value: T) => any ): LoDashExplicitArrayWrapper<T>; /** * @see _.unionBy */ unionBy<T, W extends Object>( arrays2: T[]|List<T>, arrays3: T[]|List<T>, iteratee?: W ): LoDashExplicitArrayWrapper<T>; /** * @see _.unionBy */ unionBy<T>( arrays2: T[]|List<T>, arrays3: T[]|List<T>, arrays4: T[]|List<T>, iteratee?: (value: T) => any ): LoDashExplicitArrayWrapper<T>; /** * @see _.unionBy */ unionBy<T, W extends Object>( arrays2: T[]|List<T>, arrays3: T[]|List<T>, arrays4: T[]|List<T>, iteratee?: W ): LoDashExplicitArrayWrapper<T>; /** * @see _.unionBy */ unionBy<T>( arrays2: T[]|List<T>, arrays3: T[]|List<T>, arrays4: T[]|List<T>, arrays5: T[]|List<T>, iteratee?: (value: T) => any ): LoDashExplicitArrayWrapper<T>; /** * @see _.unionBy */ unionBy<T, W extends Object>( arrays2: T[]|List<T>, arrays3: T[]|List<T>, arrays4: T[]|List<T>, arrays5: T[]|List<T>, iteratee?: W ): LoDashExplicitArrayWrapper<T>; /** * @see _.unionBy */ unionBy<T>( ...iteratee: any[] ): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.uniq interface LoDashStatic { /** * Creates a duplicate-free version of an array, using * [`SameValueZero`](http://ecma-international.org/ecma-262/6.0/#sec-samevaluezero) * for equality comparisons, in which only the first occurrence of each element * is kept. * * @static * @memberOf _ * @category Array * @param {Array} array The array to inspect. * @returns {Array} Returns the new duplicate free array. * @example * * _.uniq([2, 1, 2]); * // => [2, 1] */ uniq<T>( array: List<T> ): T[]; /** * @see _.uniq */ uniq<T, TSort>( array: List<T> ): T[]; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitWrapper<T> { /** * @see _.uniq */ uniq<TSort>(): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.uniq */ uniq<TSort>(): LoDashImplicitArrayWrapper<T>; /** * @see _.uniq */ uniq(): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { uniq<T>(): LoDashImplicitArrayWrapper<T>; /** * @see _.uniq */ uniq<T, TSort>(): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitWrapper<T> { /** * @see _.uniq */ uniq<TSort>(): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript