Files
2026-04-27 19:09:03 +08:00

14 lines
219 B
TypeScript

/// <reference types="vite/client" />
declare module "axios" {
export interface AxiosRequestConfig {
mute?: boolean;
}
}
declare module "vue" {
interface ComponentCustomProperties {
$formkit: any;
}
}