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