mirror of
https://github.com/un-pany/v3-admin-vite.git
synced 2025-04-23 04:19:20 +08:00
11 lines
230 B
TypeScript
11 lines
230 B
TypeScript
|
declare module "*.vue" {
|
||
|
import { DefineComponent } from "vue"
|
||
|
const component: DefineComponent<{}, {}, any>
|
||
|
export default component
|
||
|
}
|
||
|
|
||
|
declare module "*.scss" {
|
||
|
const scss: Record<string, string>
|
||
|
export default scss
|
||
|
}
|