UNPKG

flagpole

Version:

Simple and fast DOM integration, headless or headful browser, and REST API testing framework.

14 lines (13 loc) 506 B
import { ProtoValue, Value } from './value'; import { AssertionContext } from './assertioncontext'; export declare class CSSRule extends ProtoValue { protected _path: string; readonly path: string; readonly name: string; static create(input: any, context: AssertionContext, name: string, path: string): CSSRule; private constructor(); hasProperty(key: string): Promise<Value>; getProperty(key: string): Promise<Value>; private _getSelectors; private _getDeclarations; }