diff --git a/modules/effects/src/actions.ts b/modules/effects/src/actions.ts index ec72e8c938..a3e0d2d006 100644 --- a/modules/effects/src/actions.ts +++ b/modules/effects/src/actions.ts @@ -20,6 +20,9 @@ export class Actions extends Observable { return observable; } + /** + * @deprecated from 6.1.0. Use the pipeable `ofType` operator instead. + */ ofType(...allowedTypes: string[]): Actions { return ofType(...allowedTypes)(this as Actions) as Actions; }