hast-util-to-mdast
Version:
hast utility to transform to mdast
13 lines • 397 B
TypeScript
/**
* @param {State} state
* State.
* @param {Readonly<Element>} node
* hast element to transform.
* @returns {Text | undefined}
* mdast node.
*/
export function select(state: State, node: Readonly<Element>): Text | undefined;
import type { State } from 'hast-util-to-mdast';
import type { Element } from 'hast';
import type { Text } from 'mdast';
//# sourceMappingURL=select.d.ts.map