Open
Description
I have one functions which inter alia disabled HTMLInputElement, HTMLTextAreaElement and others. Currently I use an unsafeCast
to HTMLInputElement for other types because I know that it works as internally it only uses disabled
which HTMLTextAreaElement, HTMLSelectElement provide as well.
However, it would be nicer if I could rely on a common interface and do not have to use unsafeCast