ds-markdown
Version:
> 🚀 高性能 React Markdown 打字动画组件,完美复刻 DeepSeek 聊天界面效果
21 lines (16 loc) • 631 B
TypeScript
import { Pluggable } from 'unified';
interface IMarkdownPlugin {
remarkPlugin?: Pluggable;
rehypePlugin?: Pluggable;
type: 'buildIn' | 'custom';
id?: any;
components?: Record<string, React.ComponentType<unknown>>;
}
/** 数学公式插件id */
declare const katexId = "__ds-markdown__katex";
/** 流程图插件id */
declare const mermaidId = "__ds-markdown__mermaid";
declare function createBuildInPlugin(partialPlugin: Partial<IMarkdownPlugin>): IMarkdownPlugin;
declare const katexPlugin: IMarkdownPlugin;
export { createBuildInPlugin, katexId, katexPlugin, mermaidId };
export type { IMarkdownPlugin };