withLatestFrom.d.ts 193 B

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