> 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

Returns the type of the argument.

*`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="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FJezaRb4fDg1jZdif3Fmn%2FScreenshot%202025-07-23%20at%206.03.31%E2%80%AFPM.png?alt=media&amp;token=4a998c47-d0cc-4107-9dd8-bbc12ac0111f" alt=""><figcaption></figcaption></figure>
