/** * Extends interfaces in Vue.js */ import { VuexComponentOption, Store } from './index' declare global { namespace vuejs { interface ComponentOption { vuex?: VuexComponentOption; store?: Store; } interface Vue { $store?: Store; } } }