Zakir Nuriiev

Results 7 comments of Zakir Nuriiev

I also need this feature for the Nrwl Nx workspace to share styles between libs

I am using 'flux-standard-action' library typings: **FSAAuto** and **ErrorFSAAuto**. Link to typings file [https://github.com/redux-utilities/flux-standard-action/blob/master/src/index.d.ts](url). I have a reducer `export function appReducer(state: AppState = initialAppState, action: AppActions): AppState {...}` Where **AppActions**...

Hi @bloomdido. I have found a workaround for this issue. If cast the type of "reducerMap" property to ReducersMapObject, everything is fine. E.g. ``` export const RoleModule: ISagaModule = {...

> > From what I understand, the issue is that any action can always be an `AnyAction`, but an `AnyAction` cannot always be any action. > > @bloomdido , This...

> I wonder if instead of `type ==` it needs to use `instanceof` instead I think it will not help. The same issue with `TabPanel` component in the `TabView`.

It may help if your wrapper component is a class component that extends the `AccordionTab` or `TabPanel`. But if your wrapper comment is a function it will not help.

> https://github.com/cypress-io/cypress/blob/71c5b864ea84c73b561ffaa15eadb94cb7de6422/npm/webpack-dev-server/src/CypressCTWebpackPlugin.ts#L122 > > This is the problem. The obvious issue is how do we know where to look? I wonder if we can create a temporary file, include it...