UNPKG

yuque-dl

Version:
9 lines (8 loc) 284 B
import type { Root, Link } from 'mdast'; export declare function getAst(mdData: string): Root; export declare function toMd(astTree: Root): string; export interface ILinkItem { node: Link; keyChain: string[]; } export declare function getLinkList(curNode: Root): ILinkItem[];