Если вы добавляете директиву к textarea
вместо ion-textarea, вы можете получить доступ к html-элементу непосредственно из nativeElement
.Вы не получите доступ через getElementsByTagName
adjust():void {
const textArea = this.element.nativeElement;
textArea.style.overflow = 'hidden';
textArea.style.height = 'auto';
textArea.style.height = textArea.scrollHeight + 'px';
}