如何在rxjs 6 angular 6中正确键入filter运算符?

时间:2018-09-24 14:08:58

标签: angular typescript rxjs

我正在尝试使用过滤器(rxjs6)。我偶然发现了一个打字稿错误: enter image description here     参数类型(value:any,index:any)=> boolean不能分配给参数类型(value:T,index:number)=> boolean

在开发模式下运行良好。但是我不能

  

ng构建

如果我尝试

const filter1 = filter((value: { contract: string, language: string }, index: number) => value.contract !== null && value.language !== null);

我知道了

   Argument of type (value:{contract: string, language: string}, index:number)=>boolean is not assignable to parameter type (value:{contract: string, language: string}, index:number)=>boolean

0 个答案:

没有答案