type Operator = "===" | "==" | "!==" | "!=" | "<>" | ">" | "<" | ">=" | "<=" declare module 'collect.js' { export function collect(collection?: T[] | Object): Collection; export default function collect(collection?: T[] | Object): Collection; export class Collection { constructor(collection?: Item[] | Object); /** * The all method returns the underlying array represented by the collection. */ all(): Item[]; /** * Alias for the avg() method. */ average(key?: keyof Item | K): number; /** * The avg method returns the average of all items in the collection. */ avg(key?: keyof Item | K): number; /** * The chunk method breaks the collection into multiple, smaller collections of a given size. */ chunk(size: number): Collection; /** * The collapse method collapses a collection of arrays into a single, flat collection. */ collapse(): Collection; /** * The combine method combines the keys of the collection with the values of another array or collection. */ combine(array: U[]): Collection; /** * The concat method is used to merge two or more collections/arrays/objects. */ concat(collectionOrArrayOrObject: Collection | T[] | object): any; /** * The contains method determines whether the collection contains a given item. */ contains(key: keyof Item | K | Function, value?: V): boolean; /** * The count method returns the total number of items in the collection. */ count(): number; /** * The crossJoin method cross joins the collection with the given array or collection, returning all possible permutations. */ crossJoin(values: T[]): Collection<[Item, T]>; /** * The dd method will console.log the collection and exit the current process. */ dd(): void; /** * The diff method compares the collection against another collection or a plain array based on its values. * This method will return the values in the original collection that are not present in the given collection. */ diff(values: T[] | Collection): Collection; /** * The diffAssoc method compares the collection against another collection or a plain object based on its keys * and values. This method will return the key / value pairs in the original collection that are not present in * the given collection: */ diffAssoc(values: T[] | Collection): Collection; /** * The diffKeys method compares the collection against another collection or a plain object based on its keys. * This method will return the key / value pairs in the original collection that are not present in the given collection. */ diffKeys(object: object): Collection; /** * The dump method outputs the results at that moment and then continues processing. */ dump(): this; /** * The each method iterates over the items in the collection and passes each item to a callback. */ each(fn: (currentItem: Item, key?: string | number, collection?: Item[]) => void): this; /** * The every method may be used to verify that all elements of a collection pass a given truth test. */ every(fn: (item: Item) => boolean): boolean; /** * The except method returns all items in the collection except for those with the specified keys. */ except(properties: K[]): Collection; /** * The filter method filters the collection using the given callback, * keeping only those items that pass a given truth test. */ filter(fn: (item: Item) => boolean): Collection; filter(fn: (item: Item, key?: any) => boolean): Collection; /** * The first method returns the first element in the collection that passes a given truth test. */ first(fn?: (item: Item) => boolean, defaultValue?: ((...any: any[]) => V | Item) | V | Item): Item; /** * The flatMap method iterates through the collection and passes each value to the given callback. * The callback is free to modify the item and return it, thus forming a new collection of modified items. * Then, the array is flattened by a level. */ flatMap(fn: (item: Item, key: any) => T): Collection; /** * The flatten method flattens a multi-dimensional collection into a single dimension. */ flatten(depth?: number): Collection; /** * The flip method swaps the collection's keys with their corresponding values. */ flip(): Collection; /** * The forget method removes an item from the collection by its key. */ forget(key: keyof Item | K): this; /** * The forPage method returns a new collection containing the items that would be present on a given page number. * The method accepts the page number as its first argument * and the number of items to show per page as its second argument. */ forPage(page: number, chunk: number): Collection; /** * The get method returns the item at a given key. If the key does not exist, null is returned. */ get(key: keyof Item | K, defaultValue?: ((...any: any[]) => V | Item) | V | Item): Item | null; /** * The groupBy method groups the collection's items by a given key. * */ groupBy(key: ((item: Item, index?: number) => K) | keyof Item | K): Collection; /** * The has method determines if one or more keys exists in the collection. */ has(key: keyof Item | K | (keyof Item)[]): boolean; /** * The implode method joins the items in a collection. * Its arguments depend on the type of items in the collection. * * If the collection contains arrays or objects, * you should pass the key of the attributes you wish to join, * and the "glue" string you wish to place between the values. */ implode(key: keyof Item | K, glue?: string): string; /** * The intersect method removes any values from the original collection * that are not present in the given array or collection. * The resulting collection will preserve the original collection's keys. */ intersect(values: Item[] | Collection): Collection; /** * The intersectByKeys method removes any keys from the original collection * that are not present in the given array or collection. */ intersectByKeys(values: Item | Collection): Collection /** * The isEmpty method returns true if the collection is empty; otherwise, false is returned. */ isEmpty(): boolean; /** * The isNotEmpty method returns true if the collection is not empty; otherwise, false is returned. */ isNotEmpty(): boolean; /** * The keyBy method keys the collection by the given key. * If multiple items have the same key, only the last one will appear in the new collection. */ keyBy(key: keyof Item | K | Function): Collection; /** * The keys method returns all of the collection's keys. */ keys(): Collection; /** * The last method returns the last element in the collection that passes a given truth test. */ last(fn?: (item: Item) => boolean): Item; /** * The macro method lets you register custom methods. */ macro(name: string, fn: Function): void; /** * The map method iterates through the collection and passes each value to the given callback. * The callback is free to modify the item and return it, thus forming a new collection of modified items. */ map(fn: (item: Item, index: any) => T): Collection; /** * The mapInto method iterates through the collection and instantiates the given class with each element as a constructor. */ mapInto(ClassName: T): Collection; /** * The mapToGroups method iterates through the collection and passes each value to the given callback. */ mapToGroups(fn: Function): Collection; /** * The mapWithKeys method iterates through the collection and passes each value to the given callback. * The callback should return an array where the first element represents the key * and the second element represents the value pair. */ mapWithKeys(fn: Function): Collection; /** * The max method returns the maximum value of a given key. */ max(key?: keyof Item | string): number; /** * The median method returns the median value of a given key. */ median(key?: keyof Item | K): Item; /** * The merge method merges the given object into the original collection. * If a key in the given object matches a key in the original collection, * the given objects value will overwrite the value in the original collection. */ merge(objectOrArray: object | T[]): Collection; /** * The min method returns the minimum value of a given key. */ min(key?: keyof Item | K): number; /** * The mode method returns the mode value of a given key. */ mode(key?: keyof Item | K): Collection | null; /** * The nth method creates a new collection consisting of every n-th element. */ nth(n: number, offset?: number): Collection; /** * The only method returns the items in the collection with the specified keys. */ only(properties: K[]): Collection; /** * The partition method may be combined with destructuring to separate elements * that pass a given truth test from those that do not. */ partition(fn: (item: Item) => boolean): [Item[], Item[]]; /** * The pipe method passes the collection to the given callback and returns the result. */ pipe(fn: (...any: any[]) => U): U; /** * The pluck method retrieves all of the values for a given key. */ pluck(value: keyof Item | V, key?: keyof Item | K): Collection; /** * The pop method removes and returns the last item from the collection. */ pop(): Item; /** * The prepend method adds an item to the beginning of the collection. */ prepend(value: V, key?: K): this; /** * The pull method removes and returns an item from the collection by its key. */ pull(key: keyof Item | K): Item | null; /** * The push method appends an item to the end of the collection. */ push(item: Item): this; /** * The put method sets the given key and value in the collection. */ put(key: K, value: V): this; /** * The random method returns a random item from the collection. */ random(length?: number): this | Item; /** * The reduce method reduces the collection to a single value, * passing the result of each iteration into the subsequent iteration. */ reduce(fn: (_carry: T | null, item: Item) => T, carry?: T): any; /** * The reject method filters the collection using the given callback. * The callback should return true if the item should be removed from the resulting collection. */ reject(fn: (item: Item) => boolean): Collection; /** * The reverse method reverses the order of the collection's items. */ reverse(): Collection; /** * The search method searches the collection for the given value and returns its key if found. * If the item is not found, false is returned. */ search(valueOrFunction: Item | ((value: Item, key: number) => boolean), strict?: boolean): any; /** * The shift method removes and returns the first item from the collection. */ shift(): Item; /** * The shuffle method randomly shuffles the items in the collection. */ shuffle(): this; /** * The slice method returns a slice of the collection starting at the given index. */ slice(remove: number, limit?: number): Collection; /** * The sort method sorts the collection. */ sort(fn?: (a: Item, b: Item) => number): Collection; /** * The sortBy method sorts the collection by the given key. * The sorted collection keeps the original array keys. */ sortBy(value: V): Collection; /** * The sortBy method sorts the collection by the given callback. * The sorted collection keeps the original array keys. */ sortBy(fn: (item: Item) => number): Collection; /** * This method has the same signature as the sortBy method, * but will sort the collection in the opposite order. */ sortByDesc(value: V): Collection; /** * This method has the same signature as the sortBy method, * but will sort the collection in the opposite order. */ sortByDesc(fn: (item: Item) => number): Collection; /** * The splice method removes and returns a slice of items starting at the specified index. * You may pass a second argument to limit the size of the resulting chunk. */ splice(index: number, limit: number, replace?: Item[]): Collection; /** * The split method breaks a collection into the given number of groups. */ split(numberOfGroups: number): Item[]; /** * The sum method returns the sum of all items in the collection. */ sum(key?: keyof Item | K | ((item: Item) => number | string)): number | string; [Symbol.iterator]: () => Iterator; /** * The take method returns a new collection with the specified number of items: * You may also pass a negative integer to take the specified amount of items from the end of the collection. */ take(length: number): Collection; /** * The tap method passes the collection to the given callback, * allowing you to "tap" into the collection at a specific point * and do something with the items while not affecting the collection itself. */ tap(fn: (collection: Collection) => void): this; /** * The times method creates a new collection by invoking the callback a given amount of times. */ times(times: number, fn: (time: number) => T): T[]; /** * The toArray method converts the collection into a plain array. * If the collection is an object, an array containing the values will be returned. */ toArray(): T[]; /** * The toJson method converts the collection into JSON string. */ toJson(): string; /** * The transform method iterates over the collection and calls the given callback with each item in the collection. * The items in the collection will be replaced by the values returned by the callback. */ transform(fn: (item: Item) => T): Collection; /** * The union method adds the given array to the collection. * If the given array contains keys that are already in the original collection, * the original collection's values will be preferred. */ union(object: Object): Collection; /** * The unique method returns all of the unique items in the collection. */ unique(key?: keyof Item | K | Function): Collection; /** * The unless method will execute the given callback when the first argument given to the method evaluates to false. */ unless(value: boolean, fn: (this: any) => any, defaultFn: (this: any) => any): void; /** * The unwrap method will unwrap the given collection. */ unwrap(value: T[] | Collection): T[]; /** * The values method returns a new collection with the keys reset to consecutive integers. */ values(): Collection; /** * The when method will execute the given callback when the first argument given to the method evaluates to true. */ when(condition: boolean, fn: (this: any) => any, defaultFn: (this: any) => any): void; /** * The where method filters the collection by a given key / value pair. */ where(key: keyof Item | K, value: V): Collection; /** * The where method filters the collection by a given key / value pair. */ where(key: keyof Item | K, operator: Operator, value: V): Collection; /** * The whereIn method filters the collection by a given key / value contained within the given array. */ whereIn(key: keyof Item | K, values: V[]): Collection; /** * The whereNotIn method filters the collection by a given key / value not contained within the given array. */ whereNotIn(key: keyof Item | K, values: V[]): Collection; /** * The wrap method will wrap the given value in a collection. */ wrap(value: T | T[] | Collection): Collection; /** * The zip method merges together the values of the given array with the values * of the original collection at the corresponding index. */ zip(array: T[]): Collection<[Item, T]>; [macroFn: string]: Function; } }