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