UNPKG

@applitools/eyes-browser

Version:
24 lines (23 loc) 622 B
export type PropertyData = { name: string; value: string; }; export declare class PropertyDataData implements Required<PropertyData> { private _property; constructor(property: PropertyData); constructor(name: string, value: string); get name(): string; set name(name: string); getName(): string; setName(name: string): void; get value(): string; set value(value: string); getValue(): string; setValue(value: string): void; /** @internal */ toObject(): PropertyData; /** @internal */ toJSON(): PropertyData; /** @internal */ toString(): string; }