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