index.d.ts 217 B

12345678
  1. /**
  2. * Turn references and definitions into normal links and images.
  3. *
  4. * @returns
  5. * Transform.
  6. */
  7. export default function remarkInlineLinks(): (tree: Root) => undefined;
  8. export type Root = import('mdast').Root;