partition.d.ts 173 B

123456
  1. import { partition } from '../../operator/partition';
  2. declare module 'rxjs/internal/Observable' {
  3. interface Observable<T> {
  4. partition: typeof partition;
  5. }
  6. }