I have a function in my code:
networkStop = (action: string = null) => {
    this.action[action] = false;
    this.net = false;
    this.netd = false;
}
I'm getting a TsLint error saying:
Message 4   TsLint: expected callSignature to have a typedef.
Can someone explain what this means?
 
     
    