You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
528 B
6 lines
528 B
2 years ago
|
import type { PseudoSelector } from "css-what";
|
||
|
import type { InternalOptions } from "../types.js";
|
||
|
export declare type Pseudo = <Node, ElementNode extends Node>(elem: ElementNode, options: InternalOptions<Node, ElementNode>, subselect?: string | null) => boolean;
|
||
|
export declare const pseudos: Record<string, Pseudo>;
|
||
|
export declare function verifyPseudoArgs<T extends Array<unknown>>(func: (...args: T) => boolean, name: string, subselect: PseudoSelector["data"], argIndex: number): void;
|
||
|
//# sourceMappingURL=pseudos.d.ts.map
|