praveenpuglia / vuetify-daterange-picker

The missing date range picker for Vuetify JS you have been looking for.
https://vuetify-daterange-picker.gitbook.io/docs
MIT License
197 stars 59 forks source link

No typescript support #79

Closed andreixk closed 3 years ago

andreixk commented 3 years ago

Tying to use the package in a typescript project:

Could not find a declaration file for module 'vuetify-daterange-picker'
praveenpuglia commented 3 years ago

Hey!

So, I no longer maintain the project but if it still works for you you can do the following workaround to get past through TS.

If you have scaffolded your project using vue-cli, you should have a shims-vue.d.ts file where you can add the following line

declare module 'vuetify-daterange-picker';

This should make TS warning go away.