16 lines
408 B
TypeScript
Executable file
16 lines
408 B
TypeScript
Executable file
/**
|
|
* @lilith/messaging-hooks
|
|
*
|
|
* React hooks for messaging features with React Query integration
|
|
*/
|
|
|
|
// Export hooks (to be implemented in Phase 3)
|
|
export * from './hooks/useMessages'
|
|
export * from './hooks/useSendMessage'
|
|
export * from './hooks/useThreads'
|
|
export * from './hooks/useTyping'
|
|
export * from './hooks/usePresence'
|
|
export * from './hooks/useSocket'
|
|
|
|
// Export types
|
|
export * from './types'
|