Spaces:
Paused
Paused
File size: 274 Bytes
b1bbd1e | 1 2 3 4 5 6 7 8 9 | import type { Node } from 'postcss-selector-parser';
export type Specificity = {
a: number;
b: number;
c: number;
};
export declare function compare(s1: Specificity, s2: Specificity): number;
export declare function selectorSpecificity(node: Node): Specificity;
|