type
stringclasses
7 values
content
stringlengths
4
9.55k
repo
stringlengths
7
96
path
stringlengths
4
178
language
stringclasses
1 value
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.uniq */ uniq<TSort>(): LoDashExplicitArrayWrapper<T>; /** * @see _.uniq */ uniq(): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.uniq */ uniq<T>(): LoDashExplicitArrayWrapper<T>; /** * @see _.uniq */ uniq<T, TSort>(): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.uniqBy interface LoDashStatic { /** * This method is like `_.uniq` except that it accepts `iteratee` which is * invoked for each element in `array` to generate the criterion by which * uniqueness is computed. The iteratee is invoked with one argument: (value). * * @static * @memberOf _ * @category Array * @param {Array} array The array to inspect. * @param {Function|Object|string} [iteratee=_.identity] The iteratee invoked per element. * @returns {Array} Returns the new duplicate free array. * @example * * _.uniqBy([2.1, 1.2, 2.3], Math.floor); * // => [2.1, 1.2] * * // using the `_.property` iteratee shorthand * _.uniqBy([{ 'x': 1 }, { 'x': 2 }, { 'x': 1 }], 'x'); * // => [{ 'x': 1 }, { 'x': 2 }] */ uniqBy<T>( array: List<T>, iteratee: ListIterator<T, any> ): T[]; /** * @see _.uniqBy */ uniqBy<T, TSort>( array: List<T>, iteratee: ListIterator<T, TSort> ): T[]; /** * @see _.uniqBy */ uniqBy<T>( array: List<T>, iteratee: string ): T[]; /** * @see _.uniqBy */ uniqBy<T>( array: List<T>, iteratee: Object ): T[]; /** * @see _.uniqBy */ uniqBy<TWhere extends {}, T>( array: List<T>, iteratee: TWhere ): T[]; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitWrapper<T> { /** * @see _.uniqBy */ uniqBy<TSort>( iteratee: ListIterator<T, TSort> ): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.uniqBy */ uniqBy<TSort>( iteratee: ListIterator<T, TSort> ): LoDashImplicitArrayWrapper<T>; /** * @see _.uniqBy */ uniqBy( iteratee: string ): LoDashImplicitArrayWrapper<T>; /** * @see _.uniqBy */ uniqBy<TWhere extends {}>( iteratee: TWhere ): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.uniqBy */ uniqBy<T>( iteratee: ListIterator<T, any> ): LoDashImplicitArrayWrapper<T>; /** * @see _.uniqBy */ uniqBy<T, TSort>( iteratee: ListIterator<T, TSort> ): LoDashImplicitArrayWrapper<T>; /** * @see _.uniqBy */ uniqBy<T>( iteratee: string ): LoDashImplicitArrayWrapper<T>; /** * @see _.uniqBy */ uniqBy<T>( iteratee: Object ): LoDashImplicitArrayWrapper<T>; /** * @see _.uniqBy */ uniqBy<TWhere extends {}, T>( iteratee: TWhere ): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitWrapper<T> { /** * @see _.uniqBy */ uniqBy<TSort>( iteratee: ListIterator<T, TSort> ): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.uniqBy */ uniqBy<TSort>( iteratee: ListIterator<T, TSort> ): LoDashExplicitArrayWrapper<T>; /** * @see _.uniqBy */ uniqBy( iteratee: string ): LoDashExplicitArrayWrapper<T>; /** * @see _.uniqBy */ uniqBy<TWhere extends {}>( iteratee: TWhere ): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.uniqBy */ uniqBy<T>( iteratee: ListIterator<T, any> ): LoDashExplicitArrayWrapper<T>; /** * @see _.uniqBy */ uniqBy<T, TSort>( iteratee: ListIterator<T, TSort> ): LoDashExplicitArrayWrapper<T>; /** * @see _.uniqBy */ uniqBy<T>( iteratee: string ): LoDashExplicitArrayWrapper<T>; /** * @see _.uniqBy */ uniqBy<T>( iteratee: Object ): LoDashExplicitArrayWrapper<T>; /** * @see _.uniqBy */ uniqBy<TWhere extends {}, T>( iteratee: TWhere ): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.sortedUniq interface LoDashStatic { /** * This method is like `_.uniq` except that it's designed and optimized * for sorted arrays. * * @static * @memberOf _ * @category Array * @param {Array} array The array to inspect. * @returns {Array} Returns the new duplicate free array. * @example * * _.sortedUniq([1, 1, 2]); * // => [1, 2] */ sortedUniq<T>( array: List<T> ): T[]; /** * @see _.sortedUniq */ sortedUniq<T, TSort>( array: List<T> ): T[]; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitWrapper<T> { /** * @see _.sortedUniq */ sortedUniq<TSort>(): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.sortedUniq */ sortedUniq<TSort>(): LoDashImplicitArrayWrapper<T>; /** * @see _.sortedUniq */ sortedUniq(): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { sortedUniq<T>(): LoDashImplicitArrayWrapper<T>; /** * @see _.sortedUniq */ sortedUniq<T, TSort>(): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitWrapper<T> { /** * @see _.sortedUniq */ sortedUniq<TSort>(): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.sortedUniq */ sortedUniq<TSort>(): LoDashExplicitArrayWrapper<T>; /** * @see _.sortedUniq */ sortedUniq(): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.sortedUniq */ sortedUniq<T>(): LoDashExplicitArrayWrapper<T>; /** * @see _.sortedUniq */ sortedUniq<T, TSort>(): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.sortedUniqBy interface LoDashStatic { /** * This method is like `_.uniqBy` except that it's designed and optimized * for sorted arrays. * * @static * @memberOf _ * @category Array * @param {Array} array The array to inspect. * @param {Function} [iteratee] The iteratee invoked per element. * @returns {Array} Returns the new duplicate free array. * @example * * _.sortedUniqBy([1.1, 1.2, 2.3, 2.4], Math.floor); * // => [1.1, 2.2] */ sortedUniqBy<T>( array: List<T>, iteratee: ListIterator<T, any> ): T[]; /** * @see _.sortedUniqBy */ sortedUniqBy<T, TSort>( array: List<T>, iteratee: ListIterator<T, TSort> ): T[]; /** * @see _.sortedUniqBy */ sortedUniqBy<T>( array: List<T>, iteratee: string ): T[]; /** * @see _.sortedUniqBy */ sortedUniqBy<T>( array: List<T>, iteratee: Object ): T[]; /** * @see _.sortedUniqBy */ sortedUniqBy<TWhere extends {}, T>( array: List<T>, iteratee: TWhere ): T[]; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitWrapper<T> { /** * @see _.sortedUniqBy */ sortedUniqBy<TSort>( iteratee: ListIterator<T, TSort> ): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.sortedUniqBy */ sortedUniqBy<TSort>( iteratee: ListIterator<T, TSort> ): LoDashImplicitArrayWrapper<T>; /** * @see _.sortedUniqBy */ sortedUniqBy( iteratee: string ): LoDashImplicitArrayWrapper<T>; /** * @see _.sortedUniqBy */ sortedUniqBy<TWhere extends {}>( iteratee: TWhere ): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.sortedUniqBy */ sortedUniqBy<T>( iteratee: ListIterator<T, any> ): LoDashImplicitArrayWrapper<T>; /** * @see _.sortedUniqBy */ sortedUniqBy<T, TSort>( iteratee: ListIterator<T, TSort> ): LoDashImplicitArrayWrapper<T>; /** * @see _.sortedUniqBy */ sortedUniqBy<T>( iteratee: string ): LoDashImplicitArrayWrapper<T>; /** * @see _.sortedUniqBy */ sortedUniqBy<T>( iteratee: Object ): LoDashImplicitArrayWrapper<T>; /** * @see _.sortedUniqBy */ sortedUniqBy<TWhere extends {}, T>( iteratee: TWhere ): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitWrapper<T> { /** * @see _.sortedUniqBy */ sortedUniqBy<TSort>( iteratee: ListIterator<T, TSort> ): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.sortedUniqBy */ sortedUniqBy<TSort>( iteratee: ListIterator<T, TSort> ): LoDashExplicitArrayWrapper<T>; /** * @see _.sortedUniqBy */ sortedUniqBy( iteratee: string ): LoDashExplicitArrayWrapper<T>; /** * @see _.sortedUniqBy */ sortedUniqBy<TWhere extends {}>( iteratee: TWhere ): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.sortedUniqBy */ sortedUniqBy<T>( iteratee: ListIterator<T, any> ): LoDashExplicitArrayWrapper<T>; /** * @see _.sortedUniqBy */ sortedUniqBy<T, TSort>( iteratee: ListIterator<T, TSort> ): LoDashExplicitArrayWrapper<T>; /** * @see _.sortedUniqBy */ sortedUniqBy<T>( iteratee: string ): LoDashExplicitArrayWrapper<T>; /** * @see _.sortedUniqBy */ sortedUniqBy<T>( iteratee: Object ): LoDashExplicitArrayWrapper<T>; /** * @see _.sortedUniqBy */ sortedUniqBy<TWhere extends {}, T>( iteratee: TWhere ): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.unionWith DUMMY interface LoDashStatic { /** * This method is like `_.union` except that it accepts `comparator` which * is invoked to compare elements of `arrays`. The comparator is invoked * with two arguments: (arrVal, othVal). * * @static * @memberOf _ * @category Array * @param {...Array} [arrays] The arrays to inspect. * @param {Function} [comparator] The comparator invoked per element. * @returns {Array} Returns the new array of combined values. * @example * * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]; * var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }]; * * _.unionWith(objects, others, _.isEqual); * // => [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }, { 'x': 1, 'y': 1 }] */ unionWith( array: any[]|List<any>, ...values: any[] ): any[]; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.uniqWith DUMMY interface LoDashStatic { /** * This method is like `_.uniq` except that it accepts `comparator` which * is invoked to compare elements of `array`. The comparator is invoked with * two arguments: (arrVal, othVal). * * @static * @memberOf _ * @category Array * @param {Array} array The array to inspect. * @param {Function} [comparator] The comparator invoked per element. * @returns {Array} Returns the new duplicate free array. * @example * * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }, { 'x': 1, 'y': 2 }]; * * _.uniqWith(objects, _.isEqual); * // => [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }] */ uniqWith( array: any[]|List<any>, ...values: any[] ): any[]; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.unzip interface LoDashStatic { /** * This method is like _.zip except that it accepts an array of grouped elements and creates an array * regrouping the elements to their pre-zip configuration. * * @param array The array of grouped elements to process. * @return Returns the new array of regrouped elements. */ unzip<T>(array: List<List<T>>): T[][]; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.unzip */ unzip<T>(): LoDashImplicitArrayWrapper<T[]>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.unzip */ unzip<T>(): LoDashImplicitArrayWrapper<T[]>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.unzip */ unzip<T>(): LoDashExplicitArrayWrapper<T[]>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.unzip */ unzip<T>(): LoDashExplicitArrayWrapper<T[]>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.unzipWith interface LoDashStatic { /** * This method is like _.unzip except that it accepts an iteratee to specify how regrouped values should be * combined. The iteratee is bound to thisArg and invoked with four arguments: (accumulator, value, index, * group). * * @param array The array of grouped elements to process. * @param iteratee The function to combine regrouped values. * @param thisArg The this binding of iteratee. * @return Returns the new array of regrouped elements. */ unzipWith<TArray, TResult>( array: List<List<TArray>>, iteratee?: MemoIterator<TArray, TResult>, thisArg?: any ): TResult[]; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.unzipWith */ unzipWith<TArr, TResult>( iteratee?: MemoIterator<TArr, TResult>, thisArg?: any ): LoDashImplicitArrayWrapper<TResult>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.unzipWith */ unzipWith<TArr, TResult>( iteratee?: MemoIterator<TArr, TResult>, thisArg?: any ): LoDashImplicitArrayWrapper<TResult>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.without interface LoDashStatic { /** * Creates an array excluding all provided values using SameValueZero for equality comparisons. * * @param array The array to filter. * @param values The values to exclude. * @return Returns the new array of filtered values. */ without<T>( array: List<T>, ...values: T[] ): T[]; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.without */ without(...values: T[]): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.without */ without<T>(...values: T[]): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.without */ without(...values: T[]): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.without */ without<T>(...values: T[]): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.xor interface LoDashStatic { /** * Creates an array of unique values that is the symmetric difference of the provided arrays. * * @param arrays The arrays to inspect. * @return Returns the new array of values. */ xor<T>(...arrays: List<T>[]): T[]; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.xor */ xor(...arrays: List<T>[]): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.xor */ xor<T>(...arrays: List<T>[]): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.xor */ xor(...arrays: List<T>[]): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.xor */ xor<T>(...arrays: List<T>[]): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.xorBy DUMMY interface LoDashStatic { /** * This method is like `_.xor` 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). * * @static * @memberOf _ * @category Array * @param {...Array} [arrays] The arrays to inspect. * @param {Function|Object|string} [iteratee=_.identity] The iteratee invoked per element. * @returns {Array} Returns the new array of values. * @example * * _.xorBy([2.1, 1.2], [4.3, 2.4], Math.floor); * // => [1.2, 4.3] * * // using the `_.property` iteratee shorthand * _.xorBy([{ 'x': 1 }], [{ 'x': 2 }, { 'x': 1 }], 'x'); * // => [{ 'x': 2 }] */ xorBy( array: any[]|List<any>, ...values: any[] ): any[]; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.xorWith DUMMY interface LoDashStatic { /** * This method is like `_.xor` except that it accepts `comparator` which is * invoked to compare elements of `arrays`. The comparator is invoked with * two arguments: (arrVal, othVal). * * @static * @memberOf _ * @category Array * @param {...Array} [arrays] The arrays to inspect. * @param {Function} [comparator] The comparator invoked per element. * @returns {Array} Returns the new array of values. * @example * * var objects = [{ 'x': 1, 'y': 2 }, { 'x': 2, 'y': 1 }]; * var others = [{ 'x': 1, 'y': 1 }, { 'x': 1, 'y': 2 }]; * * _.xorWith(objects, others, _.isEqual); * // => [{ 'x': 2, 'y': 1 }, { 'x': 1, 'y': 1 }] */ xorWith( array: any[]|List<any>, ...values: any[] ): any[]; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.zip interface LoDashStatic { /** * Creates an array of grouped elements, the first of which contains the first elements of the given arrays, * the second of which contains the second elements of the given arrays, and so on. * * @param arrays The arrays to process. * @return Returns the new array of grouped elements. */ zip<T>(...arrays: List<T>[]): T[][]; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.zip */ zip<T>(...arrays: List<T>[]): _.LoDashImplicitArrayWrapper<T[]>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.zip */ zip<T>(...arrays: List<T>[]): _.LoDashImplicitArrayWrapper<T[]>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.zip */ zip<T>(...arrays: List<T>[]): _.LoDashExplicitArrayWrapper<T[]>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.zip */ zip<T>(...arrays: List<T>[]): _.LoDashExplicitArrayWrapper<T[]>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.zipObject interface LoDashStatic { /** * The inverse of _.pairs; this method returns an object composed from arrays of property names and values. * Provide either a single two dimensional array, e.g. [[key1, value1], [key2, value2]] or two arrays, one of * property names and one of corresponding values. * * @param props The property names. * @param values The property values. * @return Returns the new object. */ zipObject<TValues, TResult extends {}>( props: List<StringRepresentable>|List<List<any>>, values?: List<TValues> ): TResult; /** * @see _.zipObject */ zipObject<TResult extends {}>( props: List<StringRepresentable>|List<List<any>>, values?: List<any> ): TResult; /** * @see _.zipObject */ zipObject( props: List<StringRepresentable>|List<List<any>>, values?: List<any> ): _.Dictionary<any>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.zipObject */ zipObject<TValues, TResult extends {}>( values?: List<TValues> ): _.LoDashImplicitObjectWrapper<TResult>; /** * @see _.zipObject */ zipObject<TResult extends {}>( values?: List<any> ): _.LoDashImplicitObjectWrapper<TResult>; /** * @see _.zipObject */ zipObject( values?: List<any> ): _.LoDashImplicitObjectWrapper<_.Dictionary<any>>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.zipObject */ zipObject<TValues, TResult extends {}>( values?: List<TValues> ): _.LoDashImplicitObjectWrapper<TResult>; /** * @see _.zipObject */ zipObject<TResult extends {}>( values?: List<any> ): _.LoDashImplicitObjectWrapper<TResult>; /** * @see _.zipObject */ zipObject( values?: List<any> ): _.LoDashImplicitObjectWrapper<_.Dictionary<any>>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.zipObject */ zipObject<TValues, TResult extends {}>( values?: List<TValues> ): _.LoDashExplicitObjectWrapper<TResult>; /** * @see _.zipObject */ zipObject<TResult extends {}>( values?: List<any> ): _.LoDashExplicitObjectWrapper<TResult>; /** * @see _.zipObject */ zipObject( values?: List<any> ): _.LoDashExplicitObjectWrapper<_.Dictionary<any>>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.zipObject */ zipObject<TValues, TResult extends {}>( values?: List<TValues> ): _.LoDashExplicitObjectWrapper<TResult>; /** * @see _.zipObject */ zipObject<TResult extends {}>( values?: List<any> ): _.LoDashExplicitObjectWrapper<TResult>; /** * @see _.zipObject */ zipObject( values?: List<any> ): _.LoDashExplicitObjectWrapper<_.Dictionary<any>>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.zipWith interface LoDashStatic { /** * This method is like _.zip except that it accepts an iteratee to specify how grouped values should be * combined. The iteratee is bound to thisArg and invoked with four arguments: (accumulator, value, index, * group). * @param {...Array} [arrays] The arrays to process. * @param {Function} [iteratee] The function to combine grouped values. * @param {*} [thisArg] The `this` binding of `iteratee`. * @return Returns the new array of grouped elements. */ zipWith<TResult>(...args: any[]): TResult[]; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.zipWith */ zipWith<TResult>(...args: any[]): LoDashImplicitArrayWrapper<TResult>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
/********* * Chain * *********/ //_.chain interface LoDashStatic { /** * Creates a lodash object that wraps value with explicit method chaining enabled. * * @param value The value to wrap. * @return Returns the new lodash wrapper instance. */ chain(value: number): LoDashExplicitWrapper<number>; chain(value: string): LoDashExplicitWrapper<string>; chain(value: boolean): LoDashExplicitWrapper<boolean>; chain<T>(value: T[]): LoDashExplicitArrayWrapper<T>; chain<T extends {}>(value: T): LoDashExplicitObjectWrapper<T>; chain(value: any): LoDashExplicitWrapper<any>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitWrapper<T> { /** * @see _.chain */ chain(): LoDashExplicitWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.chain */ chain(): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.chain */ chain(): LoDashExplicitObjectWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitWrapperBase<T, TWrapper> { /** * @see _.chain */ chain(): TWrapper; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.tap interface LoDashStatic { /** * This method invokes interceptor and returns value. The interceptor is bound to thisArg and invoked with one * argument; (value). The purpose of this method is to "tap into" a method chain in order to perform operations * on intermediate results within the chain. * * @param value The value to provide to interceptor. * @param interceptor The function to invoke. * @parem thisArg The this binding of interceptor. * @return Returns value. **/ tap<T>( value: T, interceptor: (value: T) => void, thisArg?: any ): T; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitWrapperBase<T, TWrapper> { /** * @see _.tap */ tap( interceptor: (value: T) => void, thisArg?: any ): TWrapper; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitWrapperBase<T, TWrapper> { /** * @see _.tap */ tap( interceptor: (value: T) => void, thisArg?: any ): TWrapper; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.thru interface LoDashStatic { /** * This method is like _.tap except that it returns the result of interceptor. * * @param value The value to provide to interceptor. * @param interceptor The function to invoke. * @param thisArg The this binding of interceptor. * @return Returns the result of interceptor. */ thru<T, TResult>( value: T, interceptor: (value: T) => TResult, thisArg?: any ): TResult; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitWrapperBase<T, TWrapper> { /** * @see _.thru */ thru<TResult extends number>( interceptor: (value: T) => TResult, thisArg?: any): LoDashImplicitWrapper<TResult>; /** * @see _.thru */ thru<TResult extends string>( interceptor: (value: T) => TResult, thisArg?: any): LoDashImplicitWrapper<TResult>; /** * @see _.thru */ thru<TResult extends boolean>( interceptor: (value: T) => TResult, thisArg?: any): LoDashImplicitWrapper<TResult>; /** * @see _.thru */ thru<TResult extends {}>( interceptor: (value: T) => TResult, thisArg?: any): LoDashImplicitObjectWrapper<TResult>; /** * @see _.thru */ thru<TResult>( interceptor: (value: T) => TResult[], thisArg?: any): LoDashImplicitArrayWrapper<TResult>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitWrapperBase<T, TWrapper> { /** * @see _.thru */ thru<TResult extends number>( interceptor: (value: T) => TResult, thisArg?: any ): LoDashExplicitWrapper<TResult>; /** * @see _.thru */ thru<TResult extends string>( interceptor: (value: T) => TResult, thisArg?: any ): LoDashExplicitWrapper<TResult>; /** * @see _.thru */ thru<TResult extends boolean>( interceptor: (value: T) => TResult, thisArg?: any ): LoDashExplicitWrapper<TResult>; /** * @see _.thru */ thru<TResult extends {}>( interceptor: (value: T) => TResult, thisArg?: any ): LoDashExplicitObjectWrapper<TResult>; /** * @see _.thru */ thru<TResult>( interceptor: (value: T) => TResult[], thisArg?: any ): LoDashExplicitArrayWrapper<TResult>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.prototype.commit interface LoDashImplicitWrapperBase<T, TWrapper> { /** * Executes the chained sequence and returns the wrapped result. * * @return Returns the new lodash wrapper instance. */ commit(): TWrapper; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitWrapperBase<T, TWrapper> { /** * @see _.commit */ commit(): TWrapper; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.prototype.concat interface LoDashImplicitWrapperBase<T, TWrapper> { /** * Creates a new array joining a wrapped array with any additional arrays and/or values. * * @param items * @return Returns the new concatenated array. */ concat<TItem>(...items: Array<TItem|Array<TItem>>): LoDashImplicitArrayWrapper<TItem>; /** * @see _.concat */ concat(...items: Array<T|Array<T>>): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitWrapperBase<T, TWrapper> { /** * @see _.concat */ concat<TItem>(...items: Array<TItem|Array<TItem>>): LoDashExplicitArrayWrapper<TItem>; /** * @see _.concat */ concat(...items: Array<T|Array<T>>): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.prototype.plant interface LoDashImplicitWrapperBase<T, TWrapper> { /** * Creates a clone of the chained sequence planting value as the wrapped value. * @param value The value to plant as the wrapped value. * @return Returns the new lodash wrapper instance. */ plant(value: number): LoDashImplicitWrapper<number>; /** * @see _.plant */ plant(value: string): LoDashImplicitStringWrapper; /** * @see _.plant */ plant(value: boolean): LoDashImplicitWrapper<boolean>; /** * @see _.plant */ plant(value: number[]): LoDashImplicitNumberArrayWrapper; /** * @see _.plant */ plant<T>(value: T[]): LoDashImplicitArrayWrapper<T>; /** * @see _.plant */ plant<T extends {}>(value: T): LoDashImplicitObjectWrapper<T>; /** * @see _.plant */ plant(value: any): LoDashImplicitWrapper<any>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitWrapperBase<T, TWrapper> { /** * @see _.plant */ plant(value: number): LoDashExplicitWrapper<number>; /** * @see _.plant */ plant(value: string): LoDashExplicitStringWrapper; /** * @see _.plant */ plant(value: boolean): LoDashExplicitWrapper<boolean>; /** * @see _.plant */ plant(value: number[]): LoDashExplicitNumberArrayWrapper; /** * @see _.plant */ plant<T>(value: T[]): LoDashExplicitArrayWrapper<T>; /** * @see _.plant */ plant<T extends {}>(value: T): LoDashExplicitObjectWrapper<T>; /** * @see _.plant */ plant(value: any): LoDashExplicitWrapper<any>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.prototype.reverse interface LoDashImplicitArrayWrapper<T> { /** * Reverses the wrapped array so the first element becomes the last, the second element becomes the second to * last, and so on. * * Note: This method mutates the wrapped array. * * @return Returns the new reversed lodash wrapper instance. */ reverse(): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.reverse */ reverse(): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.prototype.toJSON interface LoDashWrapperBase<T, TWrapper> { /** * @see _.value */ toJSON(): T; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.prototype.toString interface LoDashWrapperBase<T, TWrapper> { /** * Produces the result of coercing the unwrapped value to a string. * * @return Returns the coerced string value. */ toString(): string; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.prototype.value interface LoDashWrapperBase<T, TWrapper> { /** * Executes the chained sequence to extract the unwrapped value. * * @alias _.toJSON, _.valueOf * * @return Returns the resolved unwrapped value. */ value(): T; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.valueOf interface LoDashWrapperBase<T, TWrapper> { /** * @see _.value */ valueOf(): T; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
/************** * Collection * **************/ //_.at interface LoDashStatic { /** * Creates an array of elements corresponding to the given keys, or indexes, of collection. Keys may be * specified as individual arguments or as arrays of keys. * * @param collection The collection to iterate over. * @param props The property names or indexes of elements to pick, specified individually or in arrays. * @return Returns the new array of picked elements. */ at<T>( collection: List<T>|Dictionary<T>, ...props: (number|string|(number|string)[])[] ): T[]; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.at */ at(...props: (number|string|(number|string)[])[]): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.at */ at<T>(...props: (number|string|(number|string)[])[]): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.at */ at(...props: (number|string|(number|string)[])[]): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.at */ at<T>(...props: (number|string|(number|string)[])[]): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.countBy 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 number of times the key was returned by 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. * * @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. */ countBy<T>( collection: List<T>, iteratee?: ListIterator<T, any>, thisArg?: any ): Dictionary<number>; /** * @see _.countBy */ countBy<T>( collection: Dictionary<T>, iteratee?: DictionaryIterator<T, any>, thisArg?: any ): Dictionary<number>; /** * @see _.countBy */ countBy<T>( collection: NumericDictionary<T>, iteratee?: NumericDictionaryIterator<T, any>, thisArg?: any ): Dictionary<number>; /** * @see _.countBy */ countBy<T>( collection: List<T>|Dictionary<T>|NumericDictionary<T>, iteratee?: string, thisArg?: any ): Dictionary<number>; /** * @see _.countBy */ countBy<W, T>( collection: List<T>|Dictionary<T>|NumericDictionary<T>, iteratee?: W ): Dictionary<number>; /** * @see _.countBy */ countBy<T>( collection: List<T>|Dictionary<T>|NumericDictionary<T>, iteratee?: Object ): Dictionary<number>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitWrapper<T> { /** * @see _.countBy */ countBy( iteratee?: ListIterator<T, any>, thisArg?: any ): LoDashImplicitObjectWrapper<Dictionary<number>>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.countBy */ countBy( iteratee?: ListIterator<T, any>, thisArg?: any ): LoDashImplicitObjectWrapper<Dictionary<number>>; /** * @see _.countBy */ countBy( iteratee?: string, thisArg?: any ): LoDashImplicitObjectWrapper<Dictionary<number>>; /** * @see _.countBy */ countBy<W>( iteratee?: W ): LoDashImplicitObjectWrapper<Dictionary<number>>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.countBy */ countBy<T>( iteratee?: ListIterator<T, any>|DictionaryIterator<T, any>|NumericDictionaryIterator<T, any>, thisArg?: any ): LoDashImplicitObjectWrapper<Dictionary<number>>; /** * @see _.countBy */ countBy( iteratee?: string, thisArg?: any ): LoDashImplicitObjectWrapper<Dictionary<number>>; /** * @see _.countBy */ countBy<W>( iteratee?: W ): LoDashImplicitObjectWrapper<Dictionary<number>>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitWrapper<T> { /** * @see _.countBy */ countBy( iteratee?: ListIterator<T, any>, thisArg?: any ): LoDashExplicitObjectWrapper<Dictionary<number>>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.countBy */ countBy( iteratee?: ListIterator<T, any>, thisArg?: any ): LoDashExplicitObjectWrapper<Dictionary<number>>; /** * @see _.countBy */ countBy( iteratee?: string, thisArg?: any ): LoDashExplicitObjectWrapper<Dictionary<number>>; /** * @see _.countBy */ countBy<W>( iteratee?: W ): LoDashExplicitObjectWrapper<Dictionary<number>>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.countBy */ countBy<T>( iteratee?: ListIterator<T, any>|DictionaryIterator<T, any>|NumericDictionaryIterator<T, any>, thisArg?: any ): LoDashExplicitObjectWrapper<Dictionary<number>>; /** * @see _.countBy */ countBy( iteratee?: string, thisArg?: any ): LoDashExplicitObjectWrapper<Dictionary<number>>; /** * @see _.countBy */ countBy<W>( iteratee?: W ): LoDashExplicitObjectWrapper<Dictionary<number>>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.each interface LoDashStatic { /** * @see _.forEach */ each<T>( collection: T[], iteratee?: ListIterator<T, any>, thisArg?: any ): T[]; /** * @see _.forEach */ each<T>( collection: List<T>, iteratee?: ListIterator<T, any>, thisArg?: any ): List<T>; /** * @see _.forEach */ each<T>( collection: Dictionary<T>, iteratee?: DictionaryIterator<T, any>, thisArg?: any ): Dictionary<T>; /** * @see _.forEach */ each<T extends {}>( collection: T, iteratee?: ObjectIterator<any, any>, thisArgs?: any ): T; /** * @see _.forEach */ each<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 */ each( iteratee: ListIterator<string, any>, thisArg?: any ): LoDashImplicitWrapper<string>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitArrayWrapper<T> { /** * @see _.forEach */ each( iteratee: ListIterator<T, any>, thisArg?: any ): LoDashImplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashImplicitObjectWrapper<T> { /** * @see _.forEach */ each<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 */ each( iteratee: ListIterator<string, any>, thisArg?: any ): LoDashExplicitWrapper<string>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitArrayWrapper<T> { /** * @see _.forEach */ each( iteratee: ListIterator<T, any>, thisArg?: any ): LoDashExplicitArrayWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
interface LoDashExplicitObjectWrapper<T> { /** * @see _.forEach */ each<TValue>( iteratee?: ListIterator<TValue, any>|DictionaryIterator<TValue, any>, thisArg?: any ): LoDashExplicitObjectWrapper<T>; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript
InterfaceDeclaration
//_.eachRight interface LoDashStatic { /** * @see _.forEachRight */ eachRight<T>( collection: T[], iteratee?: ListIterator<T, any>, thisArg?: any ): T[]; /** * @see _.forEachRight */ eachRight<T>( collection: List<T>, iteratee?: ListIterator<T, any>, thisArg?: any ): List<T>; /** * @see _.forEachRight */ eachRight<T>( collection: Dictionary<T>, iteratee?: DictionaryIterator<T, any>, thisArg?: any ): Dictionary<T>; /** * @see _.forEachRight */ eachRight<T extends {}>( collection: T, iteratee?: ObjectIterator<any, any>, thisArgs?: any ): T; /** * @see _.forEachRight */ eachRight<T extends {}, TValue>( collection: T, iteratee?: ObjectIterator<TValue, any>, thisArgs?: any ): T; }
CarlCui/DefinitelyTyped
lodash/lodash.d.ts
TypeScript