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