diff --git a/types/collectionsjs/index.d.ts b/types/collectionsjs/index.d.ts index ca64acaff8..9252953ea3 100644 --- a/types/collectionsjs/index.d.ts +++ b/types/collectionsjs/index.d.ts @@ -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;