This commit is contained in:
Nic Wilson
2019-01-18 17:28:26 -06:00
committed by Tom
parent 425d4d2470
commit ae541d2fc4

View File

@ -4,7 +4,7 @@ title: Any Type
# Any Type
The Any type instructs Typescript to suspend type checking for the specified variables. Useful when working with dynamic content for which you don't know the type, and for transitioning your codebase for Javascript to Typescript in pieces. You can use Javascript's implicit typing with variables declared with a type of Any.
The Any type instructs Typescript to suspend type checking for the specified variables. Useful when working with dynamic content for which you don't know the type, and for transitioning your codebase from Javascript to Typescript in pieces. You can use Javascript's implicit typing with variables declared with a type of Any.
```typescript
let notSure: any = 4;