Extendida interfaz de window

This commit is contained in:
Alejandro Tasistro 2025-07-08 20:23:50 -03:00
parent da4fd472ae
commit b976826bf5

10
resources/js/globals.d.ts vendored Normal file
View file

@ -0,0 +1,10 @@
declare global {
interface Window {
Vue: typeof Vue;
Event: InstanceType<typeof Vue>;
axios: typeof axios;
bulmaToast: {
toast: (options: any) => void;
};
}
}