text.d.ts 538 B

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