test/node_modules/@vuepress/plugin-theme-data/lib/node/themeDataPlugin.d.ts
2024-08-13 09:27:52 +08:00

13 lines
368 B
TypeScript

import type { Plugin } from 'vuepress/core';
import type { ThemeData } from '../shared/index.js';
/**
* Options of @vuepress/plugin-theme-data
*/
export interface ThemeDataPluginOptions {
/**
* Theme data to be used in client side
*/
themeData: ThemeData;
}
export declare const themeDataPlugin: ({ themeData, }: ThemeDataPluginOptions) => Plugin;