@@ -71,12 +71,14 @@ interface SendBirdProviderProps {
7171 config ?: SendBirdProviderConfig ;
7272 stringSet ?: Record < string , string > ;
7373 colorSet ?: Record < string , string > ;
74- isMentionEnabled ?: boolean ;
7574 imageCompression ?: {
7675 compressionRate ?: number ,
7776 resizingWidth ?: number | string ,
7877 resizingHeight ?: number | string ,
7978 } ;
79+ isMentionEnabled ?: boolean ;
80+ isTypingIndicatorEnabledOnChannelList ?: boolean ;
81+ isMessageReceiptStatusEnabledOnChannelList ?: boolean ;
8082}
8183
8284interface SendBirdStateConfig {
@@ -102,6 +104,8 @@ interface SendBirdStateConfig {
102104 resizingWidth ?: number | string ,
103105 resizingHeight ?: number | string ,
104106 } ;
107+ isTypingIndicatorEnabledOnChannelList ?: boolean ;
108+ isMessageReceiptStatusEnabledOnChannelList ?: boolean ;
105109}
106110export interface SdkStore {
107111 error : boolean ;
@@ -262,6 +266,9 @@ interface AppProps {
262266 } ;
263267 replyType ?: ReplyType ;
264268 disableAutoSelect ?: boolean ;
269+ isMentionEnabled ?: boolean ;
270+ isTypingIndicatorEnabledOnChannelList ?: boolean ;
271+ isMessageReceiptStatusEnabledOnChannelList ?: boolean ;
265272}
266273
267274interface ApplicationUserListQuery {
@@ -309,6 +316,9 @@ export interface ChannelListProviderProps {
309316 renderUserProfile ?: ( props : RenderUserProfileProps ) => React . ReactNode ;
310317 disableUserProfile ?: boolean ;
311318 disableAutoSelect ?: boolean ;
319+ typingChannels ?: Array < Sendbird . GroupChannel > ;
320+ isTypingIndicatorEnabled ?: boolean ;
321+ isMessageReceiptStatusEnabled ?: boolean ;
312322}
313323
314324export interface ChannelListProviderInterface extends ChannelListProviderProps {
@@ -352,6 +362,7 @@ interface ChannelListHeaderInterface {
352362interface ChannelPreviewInterface {
353363 channel : SendBird . GroupChannel ;
354364 isActive ?: boolean ;
365+ isTyping ?: boolean ;
355366 onClick : ( ) => void ;
356367 renderChannelAction : ( props : { channel : SendBird . GroupChannel } ) => React . ReactNode ;
357368 tabIndex : number ;
0 commit comments