-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(@142vip/vitepress): 增加
types
类型导出,支持自定义主题配置优化
- Loading branch information
Showing
3 changed files
with
20 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
export * from './types' | ||
export * from './config' | ||
export * from './vip' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import type { DefaultTheme } from 'vitepress/types/default-theme' | ||
|
||
/** | ||
* 导航栏 | ||
*/ | ||
export type NavbarConfig = DefaultTheme.NavItem[] | ||
|
||
/** | ||
* 侧边栏 | ||
*/ | ||
export type SidebarConfig = DefaultTheme.SidebarItem[] | ||
|
||
/** | ||
* 搜素-中文 | ||
*/ | ||
export type ZhSearchConfig = DefaultTheme.AlgoliaSearchOptions['locales'] |