17 lines
290 B
TypeScript
17 lines
290 B
TypeScript
/// <reference types="unplugin-icons/types/vue" />
|
|
/// <reference types="@rsbuild/core/types" />
|
|
|
|
export {};
|
|
|
|
declare module "axios" {
|
|
export interface AxiosRequestConfig {
|
|
mute?: boolean;
|
|
}
|
|
}
|
|
|
|
declare module "vue" {
|
|
interface ComponentCustomProperties {
|
|
$formkit: any;
|
|
}
|
|
}
|