()
| 262 | /** Disables the display of the tooltip. */ |
| 263 | @Input('matTooltipDisabled') |
| 264 | get disabled(): boolean { |
| 265 | return this._disabled; |
| 266 | } |
| 267 | |
| 268 | set disabled(value: BooleanInput) { |
| 269 | const isDisabled = coerceBooleanProperty(value); |
nothing calls this directly
no test coverage detected