переключатель-переключатель-реагировать-родной для машинописного текста - PullRequest
0 голосов
/ 03 августа 2020

Я хочу использовать компонент toggle-switch-react-native в моем приложении Typescript. Я пробовал установить его так:

yarn add toggle-switch-react-native --save
@types/toggle-switch-react-native

Однако я все равно получаю сообщение об ошибке:

Could not find a declaration file for module 'toggle-switch-react-native'. '/Users/grannyandsmith/insta/app/node_modules/toggle-switch-react-native/ToggleSwitch.js' implicitly has an 'any' type.
  Try `npm install @types/toggle-switch-react-native` if it exists or add a new declaration (.d.ts) file containing `declare module 'toggle-switch-react-native';`

Как я могу определить его типы? Есть альтернатива? Правильно ли я его устанавливаю?

1 Ответ

0 голосов
/ 03 августа 2020

В npm вы должны использовать npm i toggle-switch-react-native --save или npm i toggle-switch-react-native --save-dev. Они были заменены на yarn add и yarn add --dev в пряжи. Попробуйте так, может сработать

...