()
| 355 | /** Classes to be passed to the tooltip. Supports the same syntax as `ngClass`. */ |
| 356 | @Input('matTooltipClass') |
| 357 | get tooltipClass() { |
| 358 | return this._tooltipClass; |
| 359 | } |
| 360 | |
| 361 | set tooltipClass(value: string | string[] | Set<string> | {[key: string]: unknown}) { |
| 362 | this._tooltipClass = value; |
nothing calls this directly
no test coverage detected