You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After cloning the repo at the current master, I'm seeing the following compilation issues:
node_modules/redux-devtools-extension/index.d.ts:1:32 - error TS2305: Module '"/data/tmp/redux-async-ts/node_modules/redux/index"' has no exported member 'GenericStoreEnhancer'.
1 import {Action, ActionCreator, GenericStoreEnhancer, compose} from "redux";
~~~~~~~~~~~~~~~~~~~~
types/global.d.ts:11:48 - error TS2344: Type 'keyof T' does not satisfy the constraint 'string'.
Type 'string | number | symbol' is not assignable to type 'string'.
Type 'number' is not assignable to type 'string'.
11 type Omit<T, K extends keyof T> = { [P in Diff<keyof T, K>]: T[P] };
~~~~~~~
PR #46 submitted. I disabled the new keyOf behavior in tsconfig.ts and upgraded redux-devtools-extension to fix the issue mentioned here: zalmoxisus/redux-devtools-extension#492.
After cloning the repo at the current master, I'm seeing the following compilation issues:
Steps:
The second error appears to be related to known breaking changes in Typescript 2.9 with
keyof
. I'm assuming the first issue is just an out of sync typing file.Downgrading to Typescript 2.8.4 got rid of the second issue.
The text was updated successfully, but these errors were encountered: