@alauda/doom
Version:
Doctor Doom making docs.
15 lines (14 loc) • 500 B
TypeScript
import type { RspressPlugin } from '@rspress/core';
import { type DoomSite } from '../../shared/index.ts';
import type { ExportItem } from '../../types.ts';
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;