mirror of
https://github.com/hay-kot/mealie.git
synced 2025-07-15 09:33:56 -07:00
14 lines
227 B
TypeScript
14 lines
227 B
TypeScript
import Vue from "vue";
|
|
|
|
declare module "vue/types/vue" {
|
|
|
|
interface Vue {
|
|
$globals: any;
|
|
}
|
|
}
|
|
|
|
declare module "vue/types/options" {
|
|
interface ComponentOptions<V extends Vue> {
|
|
$globals?: any;
|
|
}
|
|
}
|