In svelte using on:input on an input element, I am trying to properly cast the type and it does work but I am getting a typescript error in the editor:
Property
datadoes not exist on typeEvent & { currentTarget: EventTarget & HTMLInputElement; }. ts(2339)
on:input={(elm) => { if (elm.data !== null) { // not null }}}