UNPKG

bot18

Version:

A high-frequency cryptocurrency trading bot by Zenbot creator @carlos8f

11 lines (10 loc) 369 B
/// <reference path="../../observable.ts" /> module Rx { export interface Observable<T> { /** * Converts the observable sequence to a Set if it exists. * @returns {Observable} An observable sequence with a single value of a Set containing the values from the observable sequence. */ toSet() : Observable< Set<T>>; } }