easier ovdashboard shim

This commit is contained in:
Jörn-Michael Miehe 2022-09-16 21:28:56 +00:00
parent ac13f60b81
commit 1ebaf9389f
2 changed files with 3 additions and 27 deletions

View file

@ -1,34 +1,10 @@
import { OVDashboardPlugin } from "@/plugins/ovdashboard";
import { AxiosInstance } from "axios";
declare module 'vue/types/vue' {
interface Vue {
$axios: AxiosInstance;
$ovdashboard: {
api_url: (endpoint?: string) => string;
fail: (name: string) => ((arg0: unknown) => void);
api_query_simple: (
endpoint: string,
on_success: (data: unknown) => void
) => void;
api_query_simple_string: (
endpoint: string,
on_success: (data: string) => void
) => void;
api_query_simple_list: (
endpoint: string,
on_success: (data: string[]) => void
) => void;
api_query_simple_object: (
endpoint: string,
on_success: (data: Record<string, unknown>) => void
) => void;
}
$ovdashboard: OVDashboardPlugin;
}
}

View file

@ -1,7 +1,7 @@
import axios, { AxiosInstance } from 'axios';
import Vue from 'vue';
class OVDashboardPlugin {
export class OVDashboardPlugin {
private axios: AxiosInstance;
public constructor() {