ovdashboard/ui/src/d.ts/shims-ovdashboard.d.ts

10 lines
166 B
TypeScript
Raw Normal View History

2022-09-16 21:28:56 +00:00
import { OVDashboardPlugin } from "@/plugins/ovdashboard";
2022-09-16 21:15:46 +00:00
2023-10-26 22:28:59 +00:00
declare module "vue/types/vue" {
interface Vue {
2022-09-16 21:28:56 +00:00
$ovdashboard: OVDashboardPlugin;
}
}
2023-10-26 22:28:59 +00:00
export {};