We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd3da16 commit 232ca7aCopy full SHA for 232ca7a
modules/store/src/store.ts
@@ -19,6 +19,9 @@ export class Store<T> extends Observable<T> implements Observer<Action> {
19
this.source = state$;
20
}
21
22
+ /**
23
+ * @deprecated from 6.1.0. Use the pipeable `select` operator instead.
24
+ */
25
select<K>(mapFn: (state: T) => K): Observable<K>;
26
select<a extends keyof T>(key: a): Observable<T[a]>;
27
select<a extends keyof T, b extends keyof T[a]>(
0 commit comments