laravel-template/resources/js/shim.d.ts
2023-11-01 10:56:35 +08:00

22 lines
437 B
TypeScript

declare module "*.vue" {
import { defineComponent } from "vue";
const Component: ReturnType<typeof defineComponent>;
export default Component;
}
interface Window {
axios: any;
app: any;
Ziggy: any;
}
declare module "ziggy-js" {
interface RouteList {
"sanctum.csrf-cookie": [];
"ignition.healthCheck": [];
"ignition.executeSolution": [];
"ignition.updateConfig": [];
}
}