Typescript in my project does not recognize webviews. An example is:
const webview = <webview> document.getElementById("foo");
An error is thrown saying "cannot find name 'webview'". How can I fix this issue? It works fine with just javascript.
Note: I am using Electron webview, not NativeScript WebView.