pedi2/server/resources/js/globals.d.ts

10 lines
219 B
TypeScript

declare global {
interface Window {
Vue: typeof Vue;
Event: InstanceType<typeof Vue>;
axios: typeof axios;
bulmaToast: {
toast: (options: any) => void;
};
}
}