export async function describeCss()

in packages/dom/src/css.ts [114:123]


export async function describeCss(
  element: HTMLElement,
  scope: Element = element.ownerDocument.documentElement,
): Promise<CssSelector> {
  const selector = finder(element, { root: scope });
  return {
    type: 'CssSelector',
    value: selector,
  };
}