1
0

vue.d.ts 252 B

123456789101112
  1. /**
  2. * Extends interfaces in Vue.js
  3. */
  4. import { ComponentCustomOptions, ComponentCustomProperties } from "vue";
  5. import { Store } from "./index";
  6. declare module "@vue/runtime-core" {
  7. interface ComponentCustomOptions {
  8. store?: Store<any>;
  9. }
  10. }