/** * Vue module augmentation for typed $store in components. * Enables this.$store to be typed with RootState in Vue components. */ import type { Store } from "vuex"; import type { RootState } from "@/store/types"; declare module "@vue/runtime-core" { interface ComponentCustomProperties { $store: Store; } } declare global { interface Window { $: unknown; jQuery: unknown; } } export {};