File tree Expand file tree Collapse file tree 3 files changed +11
-0
lines changed
Expand file tree Collapse file tree 3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ export default {
1616 'handlers/GroupChannelHandler' : 'src/lib/handlers/GroupChannelHandler.ts' ,
1717 'handlers/OpenChannelHandler' : 'src/lib/handlers/OpenChannelHandler.ts' ,
1818 'handlers/UserEventHandler' : 'src/lib/handlers/UserEventHandler.ts' ,
19+ 'handlers/SessionHandler' : 'src/lib/handlers/SessionHandler.ts' ,
1920
2021 // ChannelList
2122 ChannelList : 'src/smart-components/ChannelList/index.tsx' ,
Original file line number Diff line number Diff line change @@ -870,6 +870,10 @@ declare module '@sendbird/uikit-react/handlers/ConnectionHandler' {
870870 import { ConnectionHandler } from '@sendbird/chat';
871871 export default ConnectionHandler;
872872}
873+ declare module '@sendbird/uikit-react/handlers/SessionHandler' {
874+ import { SessionHandler } from '@sendbird/chat';
875+ export default SessionHandler;
876+ }
873877declare module '@sendbird/uikit-react/handlers/GroupChannelHandler' {
874878 import { GroupChannelHandler } from '@sendbird/chat/groupChannel';
875879 export default GroupChannelHandler;
Original file line number Diff line number Diff line change 1+ /**
2+ * Returns the instance of SessionHandler
3+ */
4+ import { SessionHandler } from "@sendbird/chat" ;
5+
6+ export default SessionHandler ;
You can’t perform that action at this time.
0 commit comments