nehan
Version:
Html layout engine for paged-media written in Typescript
17 lines (16 loc) • 487 B
TypeScript
import { Selector, NehanElement } from "./public-api";
export declare class AttrSelector extends Selector {
private left;
private operator?;
private right?;
constructor(left: string, operator?: string, right?: string);
toString(): string;
test(element: NehanElement): boolean;
private testAttr;
private testEqual;
private testStarEqual;
private testCaretEqual;
private testDollarEqual;
private testTildeEqual;
private testPipeEqual;
}