@vuepress-denaro/core
Version:
18 lines (17 loc) • 476 B
TypeScript
import type { PluginFunction, PluginObject } from '@vuepress/core';
interface DenaroPluginObj extends PluginObject {
/**
* Plugin name
*/
name: string;
/**
* Whether to use client config
*/
useClientConfig?: boolean;
/**
* Plugin dirname
*/
dirname?: string;
}
export declare const useDenaroPlugin: (pluginObjFun: DenaroPluginObj | (() => DenaroPluginObj)) => PluginFunction;
export type { PluginFunction, PluginObject };