vuepress-theme-hope
Version:
A light vuepress theme with tons of features
8 lines (7 loc) • 377 B
TypeScript
import type { AppearanceConfig } from "./options/appearance.js";
import type { FeatureConfig } from "./options/feature/index.js";
import type { InfoConfig } from "./options/info.js";
import type { ThemeLocaleConfig } from "./options/locales.js";
export interface ThemeData extends AppearanceConfig, FeatureConfig, InfoConfig {
locales: Record<string, ThemeLocaleConfig>;
}