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.

15 lines 285 B
/** * CSS unit value. */ export default class CSSUnitValue { unit: string; value: number; /** * Constructor. * * @param value Value. * @param unit Unit. */ constructor(value: number, unit: string); } //# sourceMappingURL=CSSUnitValue.d.ts.map