7 lines
157 B
TypeScript
Raw Normal View History

2019-11-26 14:50:43 -08:00
import { timeout } from '../../operator/timeout';
declare module '../../Observable' {
interface Observable<T> {
timeout: typeof timeout;
}
}