import type { ExactLocaleConfig } from '@vuepress/helper'; import type { WalineInitOptions, WalineLocale } from '@waline/client'; import type { BaseCommentPluginOptions } from './base.js'; export type WalineLocaleData = Partial; export type WalineLocaleConfig = ExactLocaleConfig; export interface WalineOptions extends BaseCommentPluginOptions, Omit { /** * Whether enable page views count by default * * 是否启用访问量 * * @default true */ pageview?: boolean; }