> For the complete documentation index, see [llms.txt](https://docs.r.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.r.xyz/glider-ide/api/argument/argument.type.md).

# Argument.type

*`property`*` ``type`*`: Type`*

## Query Example

```python
from glider import *


def query():
  functions = Functions().with_arg_count(2).exec(100)
 
  for f in functions:
    for arg in f.arguments().list():
        print(f"Argument type: {arg.get_variable().type}")

  return []
```

## Output Example

<figure><img src="/files/vjVIPUGGnujUVP5WFkD7" alt=""><figcaption></figcaption></figure>
