Skip to content

Commit

Permalink
feat(Store): un-deprecate select
Browse files Browse the repository at this point in the history
  • Loading branch information
timdeschryver committed Oct 26, 2018
1 parent 3c24b3d commit 3680a79
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 3680a79

Please sign in to comment.