diff --git a/resources/js/globals.d.ts b/resources/js/globals.d.ts new file mode 100644 index 0000000..39b8af3 --- /dev/null +++ b/resources/js/globals.d.ts @@ -0,0 +1,10 @@ +declare global { + interface Window { + Vue: typeof Vue; + Event: InstanceType; + axios: typeof axios; + bulmaToast: { + toast: (options: any) => void; + }; + } +}