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