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