File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -87,6 +87,14 @@ export interface CustomAction {
87
87
88
88
export type CustomActions = CustomAction [ ]
89
89
90
+ export interface MessageAction {
91
+ name : string
92
+ title : string
93
+ onlyMe ?: boolean
94
+ }
95
+
96
+ export type MessageActions = MessageAction [ ]
97
+
90
98
export interface TextFormatting {
91
99
disabled ?: boolean
92
100
italic ?: string
@@ -167,7 +175,8 @@ export interface Props {
167
175
'messages-loaded' ?: boolean
168
176
'room-actions' ?: CustomActions
169
177
'menu-actions' ?: CustomActions
170
- 'message-actions' ?: CustomActions
178
+ 'message-actions' ?: MessageActions
179
+ 'message-selection-actions' ?: CustomActions
171
180
'templates-text' ?: TemplatesText
172
181
'auto-scroll' ?: AutoScroll
173
182
'show-search' ?: boolean
You can’t perform that action at this time.
0 commit comments