()
| 211 | /** Input type of the element. */ |
| 212 | @Input() |
| 213 | get type(): string { |
| 214 | return this._type; |
| 215 | } |
| 216 | set type(value: string) { |
| 217 | this._type = value || 'text'; |
| 218 | this._validateType(); |
nothing calls this directly
no test coverage detected