partition.d.ts 165 B

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