Skip to content

Commit

Permalink
refactor(KitchenSink): remove thisArg from distinctUntilChanged signa…
Browse files Browse the repository at this point in the history
…ture

Remove an obsolete thisArg from the signature of distinctUntilChanged in KitchenSink file.

For issue #878.
  • Loading branch information
staltz authored and benlesh committed Dec 9, 2015
1 parent 97e1fdf commit 58c4ea9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Rx.KitchenSink.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {Scheduler as IScheduler} from './Scheduler';
export interface KitchenSinkOperators<T> extends CoreOperators<T> {
isEmpty?: () => Observable<boolean>;
elementAt?: (index: number, defaultValue?: any) => Observable<T>;
distinctUntilKeyChanged?: (key: string, compare?: (x: any, y: any) => boolean, thisArg?: any) => Observable<T>;
distinctUntilKeyChanged?: (key: string, compare?: (x: any, y: any) => boolean) => Observable<T>;
find?: (predicate: (value: T, index: number, source: Observable<T>) => boolean, thisArg?: any) => Observable<T>;
findIndex?: (predicate: (value: T, index: number, source: Observable<T>) => boolean, thisArg?: any) => Observable<number>;
max?: <T, R>(comparer?: (x: R, y: T) => R) => Observable<R>;
Expand Down

0 comments on commit 58c4ea9

Please sign in to comment.