html.d.ts 298 B

123456789101112131415
  1. /**
  2. * @param {Html} node
  3. * @returns {string}
  4. */
  5. export function html(node: Html): string;
  6. export namespace html {
  7. export { htmlPeek as peek };
  8. }
  9. import type { Html } from 'mdast';
  10. /**
  11. * @returns {string}
  12. */
  13. declare function htmlPeek(): string;
  14. export {};
  15. //# sourceMappingURL=html.d.ts.map