table-row.d.ts 687 B

1234567891011121314151617181920212223
  1. /**
  2. * @import {Element, ElementContent, Properties} from 'hast'
  3. * @import {Parents, TableRow} from 'mdast'
  4. * @import {State} from '../state.js'
  5. */
  6. /**
  7. * Turn an mdast `tableRow` node into hast.
  8. *
  9. * @param {State} state
  10. * Info passed around.
  11. * @param {TableRow} node
  12. * mdast node.
  13. * @param {Parents | undefined} parent
  14. * Parent of `node`.
  15. * @returns {Element}
  16. * hast node.
  17. */
  18. export function tableRow(state: State, node: TableRow, parent: Parents | undefined): Element;
  19. import type { State } from '../state.js';
  20. import type { TableRow } from 'mdast';
  21. import type { Parents } from 'mdast';
  22. import type { Element } from 'hast';
  23. //# sourceMappingURL=table-row.d.ts.map