from.ts 245 Bytes
Newer Older
patcharaporn's avatar
patcharaporn committed
1 2 3 4 5 6 7 8 9 10
import { Observable } from '../../Observable';
import { from as staticFrom } from '../../observable/from';

Observable.from = staticFrom;

declare module '../../Observable' {
  namespace Observable {
    export let from: typeof staticFrom;
  }
}