index.d.ts 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. export namespace handle {
  2. export { blockquote };
  3. export { hardBreak as break };
  4. export { code };
  5. export { definition };
  6. export { emphasis };
  7. export { hardBreak };
  8. export { heading };
  9. export { html };
  10. export { image };
  11. export { imageReference };
  12. export { inlineCode };
  13. export { link };
  14. export { linkReference };
  15. export { list };
  16. export { listItem };
  17. export { paragraph };
  18. export { root };
  19. export { strong };
  20. export { text };
  21. export { thematicBreak };
  22. }
  23. import { blockquote } from './blockquote.js';
  24. import { hardBreak } from './break.js';
  25. import { code } from './code.js';
  26. import { definition } from './definition.js';
  27. import { emphasis } from './emphasis.js';
  28. import { heading } from './heading.js';
  29. import { html } from './html.js';
  30. import { image } from './image.js';
  31. import { imageReference } from './image-reference.js';
  32. import { inlineCode } from './inline-code.js';
  33. import { link } from './link.js';
  34. import { linkReference } from './link-reference.js';
  35. import { list } from './list.js';
  36. import { listItem } from './list-item.js';
  37. import { paragraph } from './paragraph.js';
  38. import { root } from './root.js';
  39. import { strong } from './strong.js';
  40. import { text } from './text.js';
  41. import { thematicBreak } from './thematic-break.js';
  42. //# sourceMappingURL=index.d.ts.map