xpath.d.ts 141 B

12345
  1. declare function xpath(xpath: string): HTMLElement[];
  2. declare function xpath(node: ChildNode, optimized?: boolean): string;
  3. export = xpath;