mirror of https://github.com/vuejs/vitepress
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
401 B
15 lines
401 B
// so that users can do `import DefaultTheme from 'vitepress/theme'`
|
|
import { ComponentOptions } from 'vue'
|
|
|
|
export const VPHomeHero = ComponentOptions
|
|
export const VPHomeFeatures = ComponentOptions
|
|
export const VPHomeSponsors = ComponentOptions
|
|
export const VPDocAsideSponsors = ComponentOptions
|
|
|
|
declare const theme: {
|
|
Layout: ComponentOptions
|
|
NotFound: ComponentOptions
|
|
}
|
|
|
|
export default theme
|