fuc-new/doc/node_modules/@mdit/plugin-uml/lib/index.d.ts
hellcat 6adbc04d4b 1
2025-10-03 17:17:08 +08:00

35 lines
593 B
TypeScript

import { RenderRule } from 'markdown-it/lib/renderer.mjs';
import { PluginWithOptions } from 'markdown-it';
interface MarkdownItUMLOptions {
/**
* UML name
*
* UML 名称
*/
name: string;
/**
* Opening marker
*
* 开始标记
*/
open: string;
/**
* Closing marker
*
* 结束标记
*/
close: string;
/**
* Render function
*
* 渲染函数
*/
render: RenderRule;
}
declare const uml: PluginWithOptions<MarkdownItUMLOptions>;
export { uml };
export type { MarkdownItUMLOptions };