You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Or you can import components directly
import Button from 'nhsuk-react-components/lib/components/button';
But the typescript definitions are in the dist directory so they cannot be found by tsc leading to this error
Could not find a declaration file for module 'nhsuk-react-components/lib/components/button'. '/nodebox/node_modules/.store/[email protected]/node_modules/nhsuk-react-components/lib/components/button/index.js' implicitly has an 'any' type.
Try `npm i --save-dev @types/nhsuk-react-components` if it exists or add a new declaration (.d.ts) file containing `declare module 'nhsuk-react-components/lib/components/button';`typescript(7016)
If the rollup operation was modified to output to the lib folder then this would mean the types will all be present, but I'm not familiar enough with rollup to know what other effects this could have.
The text was updated successfully, but these errors were encountered:
From the readme
But the typescript definitions are in the
dist
directory so they cannot be found bytsc
leading to this errorSee example sandbox.
If the rollup operation was modified to output to the
lib
folder then this would mean the types will all be present, but I'm not familiar enough with rollup to know what other effects this could have.The text was updated successfully, but these errors were encountered: