@chatscope/use-chat
Version:
React hook for state management in chat applications
12 lines • 345 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Participant = void 0;
const _1 = require("./");
class Participant {
constructor({ id, role = new _1.ConversationRole([]) }) {
this.id = id;
this.role = role;
}
}
exports.Participant = Participant;
//# sourceMappingURL=Participant.js.map