startWith.d.ts 165 B

123456
  1. import { startWith } from '../../operator/startWith';
  2. declare module '../../Observable' {
  3. interface Observable<T> {
  4. startWith: typeof startWith;
  5. }
  6. }