Fix all type errors in design system (#3956)

* 📘 Fix type errors in design system

* 🔥 Remove unneeded `?`

* 🔧 Add design system to Vetur

* 📘 Improve typing of `$el`

* ♻️ Address feedback

* 📘 Type leftover `MouseEvent`

* 📘 Type `event.target` properly
This commit is contained in:
Iván Ovejero
2022-08-29 12:21:40 +02:00
committed by GitHub
parent 1e6b1b8227
commit 3ae6450f0b
29 changed files with 153 additions and 104 deletions

View File

@@ -54,7 +54,7 @@ export default Vue.extend({
applied.push(this.bold? 'bold': 'regular');
return applied.map((c) => this.$style[c]);
return applied.map((c) => (this.$style as { [key: string]: string })[c]);
}
},
});