UNPKG

vuepress-theme-ccds-test

Version:

This is an anime blog theme based on vuepress, the theme is simple, colorful, versatile, and supports customization, providing multiple components to set the theme

11 lines (10 loc) 457 B
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 defaultTheme: Theme<DefaultThemeOptions>;