【发布时间】:2016-11-09 21:17:02
【问题描述】:
我将我的项目从 Ionic2 Beta11 更新到 RC0。我还将ngrx/store 更新到了最新版本(2.2.1)。一切正常,但我的减速器 index.ts 出现错误:
Return type of exported function has or is using name 'Post' from external module 'PathToPostInterface' but cannot be named.
我在以下函数中得到错误:
export function getPost(id: number) {
return compose(fromPosts.getPost(id), getPostsState());
}
有没有人经历过同样的事情?我该如何解决这个问题?我想它与 TypeScript 有关,但由于我对它比较陌生,所以我不知道是什么......
【问题讨论】:
标签: angular typescript redux ionic2 ngrx