File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -96,6 +96,20 @@ export interface TextFormatting {
96
96
multilineCode ?: string
97
97
inlineCode ?: string
98
98
}
99
+ export type TemplateText = { tag : string ; text : string }
100
+
101
+ export type TemplatesText = TemplateText [ ]
102
+
103
+ export interface AutoScroll {
104
+ send : {
105
+ new : boolean
106
+ newAfterScrollUp : boolean
107
+ }
108
+ receive : {
109
+ new : boolean
110
+ newAfterScrollUp : boolean
111
+ }
112
+ }
99
113
100
114
export interface Slots {
101
115
'rooms-header' : VNode [ ]
@@ -152,6 +166,8 @@ export interface Props {
152
166
'room-actions' ?: CustomActions
153
167
'menu-actions' ?: CustomActions
154
168
'message-actions' ?: CustomActions
169
+ 'templates-text' ?: TemplatesText
170
+ 'auto-scroll' ?: AutoScroll
155
171
'show-search' ?: boolean
156
172
'show-add-room' ?: boolean
157
173
'show-send-icon' ?: boolean
You can’t perform that action at this time.
0 commit comments