# `Igniter.Mix.Task.Args`
[🔗](https://github.com/ash-project/igniter/blob/v0.8.3/lib/mix/task/args.ex#L5)

Command line arguments parsed when running an `Igniter.Mix.Task`.

These args will usually be accessed through `igniter.args` when the
`c:Igniter.Mix.Task.igniter/1` callback is run. To learn more about how
they are parsed, see `Igniter.Mix.Task.Info`.

# `t`

```elixir
@type t() :: %Igniter.Mix.Task.Args{
  argv: [String.t()],
  argv_flags: [String.t()],
  options: keyword(),
  positional: %{required(atom()) =&gt; term()}
}
```

---

*Consult [api-reference.md](api-reference.md) for complete listing*
