mirror of
https://github.com/jellyfin/jellyfin-vue.git
synced 2026-09-03 05:10:26 +03:00
10 lines
279 B
TypeScript
10 lines
279 B
TypeScript
import { Auth } from '@nuxtjs/auth';
|
|
|
|
// Fix the wonky nuxt-auth types for Vuex stores
|
|
declare module 'vuex/types/index' {
|
|
// eslint-disable-next-line -- Current TypeScript rules flag S as unused, but Nuxt requires identical types
|
|
interface Store<S> {
|
|
$auth: Auth;
|
|
}
|
|
}
|