7 lines
193 B
TypeScript
7 lines
193 B
TypeScript
import { withLatestFrom } from '../../operator/withLatestFrom';
|
|
declare module 'rxjs/internal/Observable' {
|
|
interface Observable<T> {
|
|
withLatestFrom: typeof withLatestFrom;
|
|
}
|
|
}
|