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.
36 lines (32 loc) • 510 B
text/typescript
/**
* CSSKeywordValue interface.
*
* @see https://developer.mozilla.org/en-US/docs/Web/API/CSSKeywordValue
*/
export default class CSSKeywordValue {
/**
* Constructor.
*
* @param value Value..
*/
constructor(value: string) {
this.
}
/**
* Returns value.
*
* @returns Value.
*/
public get value(): string {
return this.
}
/**
* Sets value.
*
* @param value Value.
*/
public set value(value: string) {
this.
}
}