Webstorm не распознает мой ngrx/эффект

#angular #ngrx-effects Вопрос: Этот эффект работает правильно, но webstorm, похоже, не может его распознать. sendUserName$ = createEffect(() => this.actions$.pipe( ofType(sendUserName), map((action) => { return this.usernameService.SearchUserName(action.username).pipe( map((result) => of(sendUserNameSuccess({found: result.found}))), catchError((error:…

Продолжить чтениеWebstorm не распознает мой ngrx/эффект