has no call signatures.ts(2349) 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> = () => {...}