FE/Typescript

[ TypeScript ] TSLint expected call-signature: 'underline' to have a typedef (typedef)

HEON.D 2021. 4. 10. 10:00

expected call-signature: 'underline' to have a typedef (typedef)

해결법

: any, : void 등 리턴 밸류 형 지정 할 것

 

tslint.json 파일 설정 변경

"typedef": [
  false,
  "call-signature"
],

 

'FE > Typescript' 카테고리의 다른 글

[ TypeScript ] 빌드시 모듈 못찾을때 강제 임포트  (0) 2021.04.22