Skip to content

Commit

Permalink
Removed unnecessary overload. Try and link Khaaz#58 to PR?
Browse files Browse the repository at this point in the history
  • Loading branch information
bsian03 committed Feb 20, 2020
1 parent 5a04e45 commit 45734e0
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion types/Utility/Collection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,5 +155,4 @@ export declare class Collection<T> extends Map<string | number, T> {
public apply<U>(key: string, func: 'reduce', args: [(accumulator: U, val: T) => U, U] ): Collection<U>;
public apply(key: string, func: 'update', args: [string, T] ): Collection<T>;
public apply(key: string, func: 'remove', args: [string] ): Collection<T | null>;
public apply(key: string, func: 'toObject'): Collection<T>;
}

0 comments on commit 45734e0

Please sign in to comment.