rubick/tpl/src/shims-vue.d.ts
2021-12-17 17:47:51 +08:00

11 lines
205 B
TypeScript

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