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.
21 lines • 451 B
TypeScript
import HTMLElement from '../html-element/HTMLElement.js';
/**
* HTMLLIElement
*
* @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLLIElement
*/
export default class HTMLLIElement extends HTMLElement {
/**
* Returns value.
*
* @returns Value.
*/
get value(): number;
/**
* Sets value.
*
* @param value Value.
*/
set value(value: number);
}
//# sourceMappingURL=HTMLLIElement.d.ts.map