UNPKG

react-together

Version:

A library to seamlessly add real-time multi-user interaction to your React app!

6 lines (5 loc) 223 B
export interface ReactTogetherContextType { deriveNickname: (userId: string) => string; rememberUsers: boolean; } export declare const ReactTogetherContext: import('react').Context<ReactTogetherContextType | null>;