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