2021-09-27 06:09:33 +08:00
|
|
|
declare module '*.vue' {
|
|
|
|
import { DefineComponent } from 'vue'
|
|
|
|
const comp: DefineComponent
|
|
|
|
export default comp
|
|
|
|
}
|
|
|
|
|
|
|
|
declare module '*.md' {
|
|
|
|
import { DefineComponent } from 'vue'
|
|
|
|
const comp: DefineComponent
|
|
|
|
export default comp
|
|
|
|
}
|
|
|
|
|
|
|
|
declare module 'prismjs'
|
|
|
|
declare module 'prismjs/components/index'
|
|
|
|
declare module 'escape-html'
|
|
|
|
|
|
|
|
interface ImportMeta {
|
|
|
|
env: {
|
|
|
|
MODE: string
|
|
|
|
BASE_URL: string
|
|
|
|
PROD: boolean
|
|
|
|
DEV: boolean
|
|
|
|
SSR: boolean
|
|
|
|
}
|
2021-12-28 00:57:35 +08:00
|
|
|
}
|