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