When i'm complining my vue code i get error:
[tsl] ERROR in /var/www/resources/js/Components/Language/LanguagePicker.vue.ts(13,41)
TS2571: Object is of type 'unknown'.
On this line i have mapState function from vuex:
computed: {
...mapState<State, any>({
currentLanguage: (state: State): Language | null => state.currentLanguage
})
},
How can i fix that?