TypeScript document.getElementById().value

Die herkömmliche Art an die Value eines Input Elements zu kommen, funktioniert in TypeScript nicht.

JavaScript:

document.getElementById('my_id').value = 42;

TypeScript (3.7.5):

(document.getElementById('my_id') as HTMLInputElement).value = 42;

Dank auch mal wieder an stackoverflow.