UNPKG

@alauda/doom

Version:

Doctor Doom making docs.

11 lines (10 loc) 477 B
import { type RspressPlugin, type UserConfig } from '@rspress/core'; export type * from './walk.ts'; export type * from './type.ts'; export interface AutoSidebarPluginOptions { ignore?: boolean; export?: boolean; collapsed?: boolean; } export declare const autoSidebar: (config: UserConfig, { ignore, export: export_ }: AutoSidebarPluginOptions) => Promise<UserConfig>; export declare const autoSidebarPlugin: (options?: AutoSidebarPluginOptions) => RspressPlugin;