> For the complete documentation index, see [llms.txt](https://calnix.gitbook.io/eth-dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://calnix.gitbook.io/eth-dev/learning-solidity/module-4/type.md).

# Type

#### `type(X)` returns information about `X` type.

The following properties are available for an integer type T:

* `type(T).min` The smallest value representable by type T.
* `type(T).max` The largest value representable by type T.

{% hint style="info" %}
<https://docs.soliditylang.org/en/latest/units-and-global-variables.html#type-information>
{% endhint %}
