Cannot invoke an expression whose type lacks a call signature. Type 'Number' has no compatible call signatures. code example
Example: Type 'string[]' has no call signatures.ts(2349)
// const method: string[] = () => {...}
const method: Array<string> = () => {...}