type Any = any;Type that refers to any.
Useful for bypass lint or type coverage checks. Please use only in circumstances that require it.
See *this link*.
Basically the same as TypeScript's built-in any.
It's better to not use any.
type Any = any;Type that refers to any.
Useful for bypass lint or type coverage checks. Please use only in circumstances that require it.
See *this link*.
Basically the same as TypeScript's built-in any.
It's better to not use any.