@chatscope/use-chat
Version:
React hook for state management in chat applications
12 lines • 349 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TypingUser = void 0;
class TypingUser {
constructor({ userId, content, isTyping }) {
this.userId = userId;
this.content = content;
this.isTyping = isTyping;
}
}
exports.TypingUser = TypingUser;
//# sourceMappingURL=TypingUser.js.map