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 232ca7a commit 830c8faCopy full SHA for 830c8fa
modules/effects/src/actions.ts
@@ -20,6 +20,9 @@ export class Actions<V = Action> extends Observable<V> {
20
return observable;
21
}
22
23
+ /**
24
+ * @deprecated from 6.1.0. Use the pipeable `ofType` operator instead.
25
+ */
26
ofType<V2 extends V = V>(...allowedTypes: string[]): Actions<V2> {
27
return ofType<any>(...allowedTypes)(this as Actions<any>) as Actions<V2>;
28
0 commit comments