In one of the react codebase, I came across a code like below. What does it do? The code is using typescript + react
interface ComponentProps {
getLibraryCard?(): void
}
componentDidMount() {
this.props.getLibraryCard!()
}
What does the BANG operator do here?