Skip to content

Commit

Permalink
fix(store): remove deprecation from Store.select (#1382)
Browse files Browse the repository at this point in the history
  • Loading branch information
timdeschryver authored and brandonroberts committed Oct 26, 2018
1 parent 4e4c50f commit 626784e
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions modules/store/src/store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@ export class Store<T> extends Observable<T> implements Observer<Action> {
this.source = state$;
}

/**
* @deprecated from 6.1.0. Use the pipeable `select` operator instead.
*/
select<K>(mapFn: (state: T) => K): Observable<K>;
select<a extends keyof T>(key: a): Observable<T[a]>;
select<a extends keyof T, b extends keyof T[a]>(
Expand Down

0 comments on commit 626784e

Please sign in to comment.