I am working on angular project , while editing the component.ts file example given by my teacher . a line of code appears .
@Input() public searchType!: string;
It is inside the component typescript OnInit()
function ,
I have no idea what the symbol ! means in this line of code and what is the effcts it brings .
As far as I know , it means not equals as an operator in language like php , java , but what does it mean when initializing a variable for typescript ?