mirror of
https://github.com/rubickCenter/rubick
synced 2025-06-20 11:12:44 +08:00
13 lines
228 B
TypeScript
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
|
|
}
|