table.d.ts 388 B

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