@docs-private
()
| 161 | |
| 162 | /** @docs-private */ |
| 163 | get min(): number { |
| 164 | return numberAttribute(this._hostElement.min, 0); |
| 165 | } |
| 166 | set min(v: number) { |
| 167 | this._hostElement.min = v + ''; |
| 168 | this._cdr.detectChanges(); |
no outgoing calls
no test coverage detected