22 lines
437 B
TypeScript
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": [];
|
||
|
}
|
||
|
}
|
||
|
|