(initialValue: string)
| 26 | private readonly _document = inject(DOCUMENT); |
| 27 | |
| 28 | initialize(initialValue: string) { |
| 29 | this.getNativeElement().focus(); |
| 30 | this.setValue(initialValue); |
| 31 | } |
| 32 | |
| 33 | getNativeElement(): HTMLElement { |
| 34 | return this._elementRef.nativeElement; |
nothing calls this directly
no test coverage detected