container-phrasing.d.ts 715 B

12345678910111213141516171819
  1. /**
  2. * Serialize the children of a parent that contains phrasing children.
  3. *
  4. * These children will be joined flush together.
  5. *
  6. * @param {PhrasingParents} parent
  7. * Parent of flow nodes.
  8. * @param {State} state
  9. * Info passed around about the current state.
  10. * @param {Info} info
  11. * Info on where we are in the document we are generating.
  12. * @returns {string}
  13. * Serialized children, joined together.
  14. */
  15. export function containerPhrasing(parent: PhrasingParents, state: State, info: Info): string;
  16. import type { PhrasingParents } from '../types.js';
  17. import type { State } from 'mdast-util-to-markdown';
  18. import type { Info } from 'mdast-util-to-markdown';
  19. //# sourceMappingURL=container-phrasing.d.ts.map