dumi
Version:
📖 Documentation Generator of React Component
7 lines (6 loc) • 299 B
TypeScript
import type { Root } from 'hast';
import type { Transformer } from 'unified';
import type { IMdTransformerOptions } from '.';
type IRehypeLinkOptions = Pick<IMdTransformerOptions, 'fileAbsPath' | 'routes'>;
export default function rehypeLink(opts: IRehypeLinkOptions): Transformer<Root>;
export {};