I'm trying to understand some typescript code and was wondering what this ! means:
let display = new DisplayContext(document.getElementById('container')!);
I know that ! can mean not in conditional statements and it can be used to allow a function to be called immediately after being defined. But in both cases I've seen in in front what does it mean if it's after a function?