rubick/feature/src/shims-vue.d.ts
2021-12-07 11:19:08 +08:00

13 lines
228 B
TypeScript

/* eslint-disable */
declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>
export default component
}
declare module 'axios'
interface Window {
rubick: any
}