@alauda/doom
Version:
Doctor Doom making docs.
15 lines (14 loc) • 501 B
TypeScript
import type { RspressPlugin } from '@rspress/core';
import { type DoomSite } from '../../shared/index.js';
import type { ExportItem } from '../../types.js';
export interface GlobalPluginOptions {
version?: string;
download?: boolean;
}
export interface GlobalVirtual extends GlobalPluginOptions {
userBase?: string;
prefix?: string;
sites?: DoomSite[];
export?: ExportItem[];
}
export declare const globalPlugin: ({ version, download, }: GlobalPluginOptions) => RspressPlugin;