/// module Rx { export interface Observable { /** * Projects each element of an observable sequence into zero or more buffers which are produced based on element count information. * @param {Number} count Length of each buffer. * @param {Number} [skip] Number of elements to skip between creation of consecutive buffers. If not provided, defaults to the count. * @returns {Observable} An observable sequence of buffers. */ bufferWithCount(count: number, skip?: number): Observable; } } (function() { var o : Rx.Observable; var so : Rx.Observable = o.bufferWithCount(100); so = o.bufferWithCount(100, 5); });