pedi2/resources/js/globals.d.ts
2025-07-08 20:23:50 -03:00

10 lines
219 B
TypeScript

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