happy-dom
Version:
Happy DOM is a JavaScript implementation of a web browser without its graphical user interface. It includes many web standards from WHATWG DOM and HTML.
24 lines • 625 B
TypeScript
import type CSSStyleDeclaration from '../declaration/CSSStyleDeclaration.js';
/**
* CSSStyleValue interface.
*
* @see https://developer.mozilla.org/en-US/docs/Web/API/CSSStyleValue
*/
export default class CSSStyleValue {
#private;
/**
* Constructor.
*
* @param illegalConstructorSymbol
* @param style Style.
* @param property Property.
*/
constructor(illegalConstructorSymbol: Symbol, style: CSSStyleDeclaration, property: string);
/**
* Returns value as string.
*
* @returns Value.
*/
toString(): string;
}
//# sourceMappingURL=CSSStyleValue.d.ts.map