mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
20 lines
369 B
TypeScript
20 lines
369 B
TypeScript
/**
|
|
* Extends interfaces in Vue.js
|
|
*/
|
|
|
|
import { Vue } from "../vue/vue";
|
|
import { ComponentOptions } from "../vue/options";
|
|
import { Store } from "./index";
|
|
|
|
// declare module "vue/vue" {
|
|
// interface ComponentOptions<V extends Vue> {
|
|
// store?: Store<any>;
|
|
// }
|
|
// }
|
|
|
|
// declare module "vue/vue" {
|
|
// interface Vue {
|
|
// $store: Store<any>;
|
|
// }
|
|
// }
|