table-cell.d.ts 528 B

1234567891011121314151617181920
  1. /**
  2. * @import {Element} from 'hast'
  3. * @import {TableCell} from 'mdast'
  4. * @import {State} from '../state.js'
  5. */
  6. /**
  7. * Turn an mdast `tableCell` node into hast.
  8. *
  9. * @param {State} state
  10. * Info passed around.
  11. * @param {TableCell} node
  12. * mdast node.
  13. * @returns {Element}
  14. * hast node.
  15. */
  16. export function tableCell(state: State, node: TableCell): Element;
  17. import type { State } from '../state.js';
  18. import type { TableCell } from 'mdast';
  19. import type { Element } from 'hast';
  20. //# sourceMappingURL=table-cell.d.ts.map