laravel-template/resources/js/shim.d.ts

22 lines
437 B
TypeScript
Raw Normal View History

2023-11-01 02:56:35 +00:00
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": [];
}
}