While browsing through the Angular Deprecation docs, I stumbled upon the use of `!:` notation.
@Input() tpl !: TemplateRef<any>;
@ContentChild(TemplateRef) inlineTemplate !: TemplateRef<any>;
This same notation was also found here as well.
@Input() id !: string;
The meaning or concept behind the `!:` notation in Angular is unclear to me. My attempts to find information through Google, SymbolHound, and Angular Docs have not been successful.
If anyone could provide insight into how it functions, or share a documentation link, it would be greatly appreciated.