Spaces:
Running
Running
| export const CHANNEL_MESSAGE_ACTION_NAMES = [ | |
| "send", | |
| "broadcast", | |
| "poll", | |
| "react", | |
| "reactions", | |
| "read", | |
| "edit", | |
| "unsend", | |
| "reply", | |
| "sendWithEffect", | |
| "renameGroup", | |
| "setGroupIcon", | |
| "addParticipant", | |
| "removeParticipant", | |
| "leaveGroup", | |
| "sendAttachment", | |
| "delete", | |
| "pin", | |
| "unpin", | |
| "list-pins", | |
| "permissions", | |
| "thread-create", | |
| "thread-list", | |
| "thread-reply", | |
| "search", | |
| "sticker", | |
| "sticker-search", | |
| "member-info", | |
| "role-info", | |
| "emoji-list", | |
| "emoji-upload", | |
| "sticker-upload", | |
| "role-add", | |
| "role-remove", | |
| "channel-info", | |
| "channel-list", | |
| "channel-create", | |
| "channel-edit", | |
| "channel-delete", | |
| "channel-move", | |
| "category-create", | |
| "category-edit", | |
| "category-delete", | |
| "voice-status", | |
| "event-list", | |
| "event-create", | |
| "timeout", | |
| "kick", | |
| "ban", | |
| ] as const; | |
| export type ChannelMessageActionName = (typeof CHANNEL_MESSAGE_ACTION_NAMES)[number]; | |