What are the meanings of ! signs in type definitions in *.tsx files?
Is it sugar coat of a feature while creating an a instance property?
For example: provider!: Web3Provider;
What are the meanings of ! signs in type definitions in *.tsx files?
Is it sugar coat of a feature while creating an a instance property?
For example: provider!: Web3Provider;
Thanks for your comments.
I found answer by ...
Property 'provider' has no initializer and is not definitely assigned in the constructor.ts(2564)
It is a way to tell the compiler "don't complain about the possibility of it being null or undefined."