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 {
8787
8888export type CustomActions = CustomAction [ ]
8989
90+ export interface MessageAction {
91+ name : string
92+ title : string
93+ onlyMe ?: boolean
94+ }
95+
96+ export type MessageActions = MessageAction [ ]
97+
9098export interface TextFormatting {
9199 disabled ?: boolean
92100 italic ?: string
@@ -167,7 +175,8 @@ export interface Props {
167175 'messages-loaded' ?: boolean
168176 'room-actions' ?: CustomActions
169177 'menu-actions' ?: CustomActions
170- 'message-actions' ?: CustomActions
178+ 'message-actions' ?: MessageActions
179+ 'message-selection-actions' ?: CustomActions
171180 'templates-text' ?: TemplatesText
172181 'auto-scroll' ?: AutoScroll
173182 'show-search' ?: boolean
You can’t perform that action at this time.
0 commit comments