# SlashMatchArms

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

<https://docs.seedcord.org/packages/gateway/0.1.0-next.3/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>;
};
```
