UNPKG

unist-util-select

Version:

unist utility to select nodes with CSS-like selectors

7 lines (6 loc) 185 B
/** * @param {string} selector * @returns {AstSelector} */ export function parse(selector: string): AstSelector; export type AstSelector = import('css-selector-parser').AstSelector;