| 16 | }, |
| 17 | }) |
| 18 | export class CdkStepHeader implements FocusableOption { |
| 19 | _elementRef = inject<ElementRef<HTMLElement>>(ElementRef); |
| 20 | |
| 21 | /** Focuses the step header. */ |
| 22 | focus() { |
| 23 | this._elementRef.nativeElement.focus(); |
| 24 | } |
| 25 | } |
nothing calls this directly
no outgoing calls
no test coverage detected