container-flow.d.ts 715 B

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