mirror of
https://github.com/ZiuChen/ZiuChen.github.io.git
synced 2025-08-18 07:29:33 +08:00
13 lines
244 B
TypeScript
13 lines
244 B
TypeScript
declare module '*.vue' {
|
|
import { ComponentOptions } from 'vue'
|
|
const componentOptions: ComponentOptions
|
|
export default componentOptions
|
|
}
|
|
|
|
interface LinkItem {
|
|
content: string
|
|
target: string
|
|
}
|
|
|
|
type LinkList = LinkItem[]
|