Typescript - 在 createReducer 上出现 tslint 错误
Typescript - getting tslint error on createReducer
我创建了一个简单的减速器作为 ngRx 的一部分,on()
方法出现以下错误。
此外,reducer_creator.d.ts 文件中出现一些错误:
此外,这是我的 package.json ngrx 和 typescript 版本:
"@ngrx/effects": "^11.0.1",
"@ngrx/store": "^11.0.1",
"@ngrx/store-devtools": "^11.0.1",
"typescript": "~3.1.6"
有什么解决这个问题的建议吗?
NgRx v11 期望使用 TypeScript 4。
https://ngrx.io/guide/migration/v11
我创建了一个简单的减速器作为 ngRx 的一部分,on()
方法出现以下错误。
此外,reducer_creator.d.ts 文件中出现一些错误:
此外,这是我的 package.json ngrx 和 typescript 版本:
"@ngrx/effects": "^11.0.1",
"@ngrx/store": "^11.0.1",
"@ngrx/store-devtools": "^11.0.1",
"typescript": "~3.1.6"
有什么解决这个问题的建议吗?
NgRx v11 期望使用 TypeScript 4。 https://ngrx.io/guide/migration/v11