UNPKG

stream-chat-react

Version:

React components to create chat conversations or livestream style chat

11 lines (10 loc) 222 B
export class Subscription { constructor(unsubscribe) { this.closed = false; this._unsubscribe = unsubscribe; } unsubscribe() { this.closed = true; this._unsubscribe?.(); } }