@adguard/agtree
Version:
Tool set for working with adblock filter lists
11 lines (10 loc) • 315 B
TypeScript
/**
* Known uBO-specific pseudo-class names.
*/
export declare const UboPseudoName: {
readonly MatchesMedia: "matches-media";
readonly MatchesPath: "matches-path";
readonly Remove: "remove";
readonly Style: "style";
};
export type UboPseudoName = typeof UboPseudoName[keyof typeof UboPseudoName];