Scenario
Our constructor is expecting an HTMLTextAreaElement
instance but document.getElementById()
returns an HTMLElement
.
Approach
const c: HTMLTextAreaElement =<HTMLTextAreaElement> document.getElementById('console')
Demo
See console.ts
for the constructor
implementation and index.ts
for the actual demo.