input: `useCallback(event => {})` current output: `useCallback(event: any => {})` expect output: `useCallback((event: any) => {})` It should add a brackets in this condition
input:
useCallback(event => {})current output:
useCallback(event: any => {})expect output:
useCallback((event: any) => {})It should add a brackets in this condition