# SlashMatchArms

`type` in `gateway` · v0.2.1-next.0

<https://docs.seedcord.org/packages/gateway/0.2.1-next.0/types/slash-match-arms>

## Declaration

```ts
type SlashMatchArms<
    Route extends keyof SlashOptionRegistry,
    Cache extends CacheType,
    Ret
> = {
    [Key in Route]: (
        options: SlashOptions<Key, Cache>
    ) => Promisable<Ret>;
};
```
