(position: string)
| 75 | * @docs-private |
| 76 | */ |
| 77 | export function getMatTooltipInvalidPositionError(position: string) { |
| 78 | return Error(`Tooltip position "${position}" is invalid.`); |
| 79 | } |
| 80 | |
| 81 | /** Injection token that determines the scroll handling while a tooltip is visible. */ |
| 82 | export const MAT_TOOLTIP_SCROLL_STRATEGY = new InjectionToken<() => ScrollStrategy>( |
no outgoing calls
no test coverage detected
searching dependent graphs…