shakee93 / vue-toasted

🖖 Responsive Touch Compatible Toast plugin for VueJS 2+
https://shakee93.github.io/vue-toasted/
MIT License
2.21k stars 195 forks source link

Type for ToastIconPack is not correct, 'mdi' is missing #178

Open frck006 opened 4 years ago

frck006 commented 4 years ago

types/index.d.t contains: export type ToastIconPack = 'material' | 'fontawesome' | 'custom-class' | 'callback'

I think it should be export type ToastIconPack = 'material' | 'fontawesome' | 'mdi' | 'custom-class' | 'callback'