mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-08 18:28:17 +08:00
14 lines
462 B
TypeScript
14 lines
462 B
TypeScript
/**
|
|
* Turn an mdast syntax tree into markdown.
|
|
*
|
|
* @param {Nodes} tree
|
|
* Tree to serialize.
|
|
* @param {Options | null | undefined} [options]
|
|
* Configuration (optional).
|
|
* @returns {string}
|
|
* Serialized markdown representing `tree`.
|
|
*/
|
|
export function toMarkdown(tree: Nodes, options?: Options | null | undefined): string;
|
|
import type { Nodes } from 'mdast';
|
|
import type { Options } from 'mdast-util-to-markdown';
|
|
//# sourceMappingURL=index.d.ts.map
|