UNPKG

@alauda/doom

Version:

Doctor Doom making docs.

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