UNPKG

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