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

"Missing Type definition" See : https://github.com/palantir/tslint/blob/master/src/rules/typedefRule.ts for details. Basically some annotation (for a function because callSignature) is missing.

Probably the fix (specify the return type explicitly) :

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

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.

Tags:

Typescript