fix: swap raw types user/msg (#70)

This commit is contained in:
Gary
2023-02-03 09:25:21 -06:00
committed by GitHub
parent b2ee0996f1
commit 0cdafd4b63

View File

@@ -33,8 +33,8 @@ import { useContainer } from "../index.js";
export const CommandTypeRaw = {
[CommandType.Both]: ApplicationCommandType.ChatInput,
[CommandType.CtxUser]: ApplicationCommandType.Message,
[CommandType.CtxMsg]: ApplicationCommandType.User,
[CommandType.CtxUser]: ApplicationCommandType.User,
[CommandType.CtxMsg]: ApplicationCommandType.Message,
[CommandType.Slash]: ApplicationCommandType.ChatInput,
} as const;