ff-admin/src/globalProperties.config.ts

14 lines
346 B
TypeScript
Raw Permalink Normal View History

2024-10-08 10:43:16 +02:00
import type { AxiosInstance } from "axios";
2024-08-25 10:10:11 +02:00
import type { RouteLocationNormalizedLoaded, Router } from "vue-router";
2024-08-23 14:42:32 +02:00
declare module "@vue/runtime-core" {
interface ComponentCustomProperties {
$dev: boolean;
2024-10-08 10:43:16 +02:00
$http: AxiosInstance;
2024-08-23 14:42:32 +02:00
$router: Router;
2024-08-25 10:10:11 +02:00
$route: RouteLocationNormalizedLoaded;
2024-08-23 14:42:32 +02:00
}
}
export {}; // Important! See note.