UNPKG

@omneedia/socketcluster

Version:

SocketCluster - A Highly parallelized WebSocket server cluster to make the most of multi-core machines/instances.

14 lines (13 loc) 518 B
import { MonoTypeOperatorFunction } from '../interfaces'; /** * Returns an Observable that skips the first `count` items emitted by the source Observable. * * <img src="./img/skip.png" width="100%"> * * @param {Number} count - The number of times, items emitted by source Observable should be skipped. * @return {Observable} An Observable that skips values emitted by the source Observable. * * @method skip * @owner Observable */ export declare function skip<T>(count: number): MonoTypeOperatorFunction<T>;