Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3// AUTOMATICALLY GENERATED.  DO NOT EDIT.
4// Use `composer build` to regenerate.
5
6namespace Wikimedia\IDLeDOM;
7
8/**
9 * HTMLMeterElement
10 *
11 * @see https://dom.spec.whatwg.org/#interface-htmlmeterelement
12 *
13 * @property int $nodeType
14 * @property string $nodeName
15 * @property string $baseURI
16 * @property bool $isConnected
17 * @property Document|null $ownerDocument
18 * @property Node|null $parentNode
19 * @property Element|null $parentElement
20 * @property NodeList $childNodes
21 * @property Node|null $firstChild
22 * @property Node|null $lastChild
23 * @property Node|null $previousSibling
24 * @property Node|null $nextSibling
25 * @property ?string $nodeValue
26 * @property ?string $textContent
27 * @property string $innerHTML
28 * @property Element|null $previousElementSibling
29 * @property Element|null $nextElementSibling
30 * @property HTMLCollection $children
31 * @property Element|null $firstElementChild
32 * @property Element|null $lastElementChild
33 * @property int $childElementCount
34 * @property HTMLSlotElement|null $assignedSlot
35 * @property ?string $namespaceURI
36 * @property ?string $prefix
37 * @property string $localName
38 * @property string $tagName
39 * @property string $id
40 * @property string $className
41 * @property DOMTokenList $classList
42 * @property string $slot
43 * @property NamedNodeMap $attributes
44 * @property ShadowRoot|null $shadowRoot
45 * @property string $outerHTML
46 * @property CSSStyleDeclaration $style
47 * @property string $contentEditable
48 * @property string $enterKeyHint
49 * @property bool $isContentEditable
50 * @property string $inputMode
51 * @property EventHandlerNonNull|callable|null $onload
52 * @property DOMStringMap $dataset
53 * @property string $nonce
54 * @property int $tabIndex
55 * @property string $title
56 * @property string $lang
57 * @property bool $translate
58 * @property string $dir
59 * @property bool $hidden
60 * @property string $accessKey
61 * @property string $accessKeyLabel
62 * @property bool $draggable
63 * @property bool $spellcheck
64 * @property string $autocapitalize
65 * @property string $innerText
66 * @property Element|null $offsetParent
67 * @property int $offsetTop
68 * @property int $offsetLeft
69 * @property int $offsetWidth
70 * @property int $offsetHeight
71 * @property float $value
72 * @property float $min
73 * @property float $max
74 * @property float $low
75 * @property float $high
76 * @property float $optimum
77 * @property NodeList $labels
78 * @phan-forbid-undeclared-magic-properties
79 */
80interface HTMLMeterElement extends HTMLElement {
81    // Direct parent: HTMLElement
82
83    /**
84     * @return float
85     */
86    public function getValue(): float;
87
88    /**
89     * @param float $val
90     */
91    public function setValue( float $val ): void;
92
93    /**
94     * @return float
95     */
96    public function getMin(): float;
97
98    /**
99     * @param float $val
100     */
101    public function setMin( float $val ): void;
102
103    /**
104     * @return float
105     */
106    public function getMax(): float;
107
108    /**
109     * @param float $val
110     */
111    public function setMax( float $val ): void;
112
113    /**
114     * @return float
115     */
116    public function getLow(): float;
117
118    /**
119     * @param float $val
120     */
121    public function setLow( float $val ): void;
122
123    /**
124     * @return float
125     */
126    public function getHigh(): float;
127
128    /**
129     * @param float $val
130     */
131    public function setHigh( float $val ): void;
132
133    /**
134     * @return float
135     */
136    public function getOptimum(): float;
137
138    /**
139     * @param float $val
140     */
141    public function setOptimum( float $val ): void;
142
143    /**
144     * @return NodeList
145     */
146    public function getLabels();
147
148}