Adds missing reverse function.

This commit is contained in:
Jamie Sykes
2019-03-04 20:46:43 +00:00
parent 3cf473bd75
commit ecef3eeb3e

View File

@@ -30,6 +30,7 @@ export default class Collection {
reduce(callback: (previous: any, current: any) => any, initial: any): any;
reject(callback: (item: any) => any): Collection;
remove(item: any): boolean;
reverse(): Collection;
skip(count: number): Collection;
slice(start: number, end?: number): Collection;
sort(compare?: () => any): Collection;