footnote-reference.d.ts 461 B

123456789101112131415
  1. /**
  2. * Turn an mdast `footnoteReference` node into hast.
  3. *
  4. * @param {State} state
  5. * Info passed around.
  6. * @param {FootnoteReference} node
  7. * mdast node.
  8. * @returns {Element}
  9. * hast node.
  10. */
  11. export function footnoteReference(state: State, node: FootnoteReference): Element;
  12. import type { State } from '../state.js';
  13. import type { FootnoteReference } from 'mdast';
  14. import type { Element } from 'hast';
  15. //# sourceMappingURL=footnote-reference.d.ts.map