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.
33 lines • 588 B
JavaScript
/**
* CSSKeywordValue interface.
*
* @see https://developer.mozilla.org/en-US/docs/Web/API/CSSKeywordValue
*/
export default class CSSKeywordValue {
/**
* Constructor.
*
* @param value Value..
*/
constructor(value) {
this.
}
/**
* Returns value.
*
* @returns Value.
*/
get value() {
return this.
}
/**
* Sets value.
*
* @param value Value.
*/
set value(value) {
this.
}
}
//# sourceMappingURL=CSSKeywordValue.js.map