What does it mean when TsLint says “expected callSignature to have a typedef.”

前端 未结 2 1455
梦毁少年i
梦毁少年i 2021-02-03 17:04

I have a function in my code:

networkStop = (action: string = null) => {
    this.action[action] = false;
    this.net = false;
    this.netd = false;
}
         


        
2条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-02-03 17:22

    To avoid the build error. in the tslint.json file write code like:-

    "typedef": [
      false,
      "call-signature"
    ],
    

    This line of code in tslint.json does not make the return type of method required.

提交回复
热议问题