Currently experimenting with adjusting the height of a pseudo element using Typescript.
An error is popping up in my IDE (vscode) as I go along.
This is the code snippet I am working with.
// choose element
let el: HTMLElement = document.getElementById('filter-container');
// adjust the height of the pseudo element
el.pseudoStyle("before", "height", newHeight);
...