# PluginArgs

`type` in `gateway` · v0.1.0-next.3

<https://docs.seedcord.org/packages/gateway/0.1.0-next.3/types/plugin-args>

Extracts the argument types for a plugin constructor, excluding the Core parameter.

## Declaration

```ts
type PluginArgs<Ctor extends PluginCtor> = Tail<
    ConstructorParameters<Ctor>
>;
```
