root.d.ts 435 B

12345678910111213
  1. /**
  2. * @param {Root} node
  3. * @param {Parents | undefined} _
  4. * @param {State} state
  5. * @param {Info} info
  6. * @returns {string}
  7. */
  8. export function root(node: Root, _: Parents | undefined, state: State, info: Info): string;
  9. import type { Root } from 'mdast';
  10. import type { Parents } from 'mdast';
  11. import type { State } from 'mdast-util-to-markdown';
  12. import type { Info } from 'mdast-util-to-markdown';
  13. //# sourceMappingURL=root.d.ts.map