image.d.ts 388 B

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