-
Notifications
You must be signed in to change notification settings - Fork 88
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Typescript types? #210
Comments
Yeah, that would be cool, @324Luke are you familiar with TS to provide some help? |
@ndelvalle I work with TypeScript fairly often. I have never worked with typescript declaration files though. So I may be able to provide some help. |
@lukewhrit @ndelvalle I had the same problem on a Vue project written in TS, I tried this fix #265 . Let me know if it works for you :) |
Works ⚡️ |
Add the following line in the configuration file "types": [
...
"types/v-click-outside.d.ts"
] In your root folder create a directory declare module 'v-click-outside'; That's all 😜 |
This would allow for usage within Typescript projects.
The text was updated successfully, but these errors were encountered: