We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9570afa commit fa45257Copy full SHA for fa45257
1 file changed
README.md
@@ -6,7 +6,10 @@
6
TypeScript verifies that your program uses the right type as you write code, avoiding potential issues at runtime.
7
but, By using any, you expose yourself to issues that are difficult to trace and debug, especially once the code is deployed in production.
8
9
-use assert-util-types, but not use any and as.
+when we cannot determine the type because we don’t know the result of that library and fetched data.
10
+we need to use any type for them.
11
+
12
+So, if you dont want to use any type. **you can use assert-util-types**.
13
14
## Installation
15
0 commit comments