Не могу импортировать socket.io-client (v2.4.0) в мой проект typescript
Здесь говорится , что я могу импортировать его следующим образом:
import io from 'socket.io-client';
Но делая это, я получаю сообщение об ошибке:
Could not find a declaration file for module 'socket.io-client'. '/.../project/node_modules/socket.io-client/lib/index.js' implicitly has an 'any' type.
Try `npm i --save-dev @types/socket.io-client` if it exists or add a new declaration (.d.ts) file containing `declare module 'socket.io-client';`ts(7016)
я пытался установить
@types/socket.io-client
но ошибка не исчезает.