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