UNPKG

0xweb

Version:

Contract package manager and other web3 tools

8 lines (7 loc) 226 B
import { SubjectStream } from './SubjectStream'; export class Subscription { constructor(public stream: SubjectStream, public cb: Function) {} unsubscribe(cb?) { this.stream.unsubscribe(this.cb ?? cb); } }