@@ -185,7 +185,7 @@ export type SendBirdState = {
185185 dispatchers : {
186186 userDispatcher : UserDispatcher ,
187187 } ,
188- }
188+ } ;
189189
190190type UserDispatcherParams = {
191191 type : string ,
@@ -515,20 +515,20 @@ type ChannelSettingsContextProps = {
515515 queries ?: ChannelSettingsQueries ;
516516 renderUserProfile ?: ( props : RenderUserProfileProps ) => React . ReactElement ;
517517 disableUserProfile ?: boolean ;
518- }
518+ } ;
519519
520520interface ChannelSettingsProps extends ChannelSettingsUIProps , ChannelSettingsContextProps {
521521}
522522
523523type ChannelSettingsEditDetailsProps = {
524524 onSubmit : ( ) => void ;
525525 onCancel : ( ) => void ;
526- }
526+ } ;
527527
528528type CustomUser = User & {
529529 isMuted : boolean ;
530530 role : string ;
531- }
531+ } ;
532532
533533interface UserListItemActionProps {
534534 actionRef : React . RefObject < HTMLInputElement > ;
@@ -553,10 +553,10 @@ declare module '@sendbird/uikit-react' {
553553 export type sendbirdSelectors = sendbirdSelectorsInterface ;
554554 export type ChannelList = React . FunctionComponent < ChannelListProps > ;
555555 export type ChannelSettings = React . FunctionComponent < ChannelSettingsProps > ;
556- export type Channel = React . FunctionComponent < ChannelProps >
557- export type OpenChannel = React . FunctionComponent < OpenChannelProps >
558- export type OpenChannelSettings = React . FunctionComponent < OpenChannelSettingsProps >
559- export type MessageSearch = React . FunctionComponent < MessageSearchProps >
556+ export type Channel = React . FunctionComponent < ChannelProps > ;
557+ export type OpenChannel = React . FunctionComponent < OpenChannelProps > ;
558+ export type OpenChannelSettings = React . FunctionComponent < OpenChannelSettingsProps > ;
559+ export type MessageSearch = React . FunctionComponent < MessageSearchProps > ;
560560 export function withSendBird (
561561 ChildComp : React . Component | React . ElementType | React . ReactElement ,
562562 mapStoreToProps ?: ( store : SendBirdState ) => unknown
@@ -814,7 +814,7 @@ interface ChannelProviderInterface extends ChannelContextProps, MessageStoreInte
814814type FileViewerProps = {
815815 onCancel : ( ) => void ;
816816 message : ClientFileMessage ;
817- }
817+ } ;
818818
819819type MessageUIProps = {
820820 message : EveryMessage ;
@@ -1020,7 +1020,7 @@ interface OpenChannelProps extends OpenChannelProviderProps, OpenChannelUIProps
10201020type OpenchannelMessageListProps = {
10211021 renderMessage ?: ( props : RenderMessageProps ) => React . ReactElement ;
10221022 renderPlaceHolderEmptyList ?: ( ) => React . ReactElement ;
1023- }
1023+ } ;
10241024
10251025type OpenChannelMessageProps = {
10261026 renderMessage ?: ( props : RenderMessageProps ) => React . ReactElement ;
@@ -1086,7 +1086,7 @@ interface UserFilledOpenChannelListQuery {
10861086type OpenChannelListFetchingStatus = 'EMPTY' | 'FETCHING' | 'DONE' | 'ERROR' ;
10871087type CustomUseReducerDispatcher = ( props : { type : string , payload : any } ) => void ;
10881088type OnOpenChannelSelected = ( channel : OpenChannel , e ?: React . MouseEvent < HTMLDivElement | unknown > ) => void ;
1089- type FetchNextCallbackType = ( callback : ( channels ?: Array < OpenChannel > , err ?: SendbirdError ) => void ) => void
1089+ type FetchNextCallbackType = ( callback : ( channels ?: Array < OpenChannel > , err ?: SendbirdError ) => void ) => void ;
10901090
10911091interface OpenChannelListProviderProps {
10921092 className ?: string ;
0 commit comments