vuepress-theme-aurora
Version:
A vuepress-based animation blog theme, simple, beautiful, multi-color, multiple custom functions, providing article poster sharing, talk, photo album, comment and other features 一个基于vuepress的动漫类博客主题,简洁,漂亮,多色彩,多种自定义功能,提供文章海报分享,说说,相册,评论等特色功�?
11 lines (10 loc) • 446 B
text/typescript
import type { Theme, ThemeConfig } from '@vuepress/core';
import type { DefaultThemeLocaleOptions, DefaultThemePluginsOptions } from '../shared';
export interface DefaultThemeOptions extends ThemeConfig, DefaultThemeLocaleOptions {
/**
* To avoid confusion with the root `plugins` option,
* we use `themePlugins`
*/
themePlugins?: DefaultThemePluginsOptions;
}
export declare const auroraTheme: Theme<DefaultThemeOptions>;