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.

16 lines 452 B
/** * HTML input element value stepping. */ export default class HTMLInputElementValueStepping { /** * Steps up or down. * * @param type Type. * @param value Value. * @param direction Direction. * @param [increment] Increment. * @returns New value. */ static step(type: string, value: string, direction: -1 | 1, increment?: number): string; } //# sourceMappingURL=HTMLInputElementValueStepping.d.ts.map