update typing to support interactions

This commit is contained in:
jacoobes
2022-02-02 16:25:42 -06:00
parent 3162044416
commit 69945c86ce
3 changed files with 14 additions and 8 deletions

View File

@@ -16,6 +16,6 @@ export type MessagePackage = {
export type delegate = Sern.Module<unknown>["delegate"]
export enum CommandType {
TEXT = 1 << 1,
SLASH = 1 << 2,
TEXT = 2,
SLASH = 4,
}