Actualizacion maquina principal
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / rxjs / internal / util / isObservable.d.ts
1 import { Observable } from '../Observable';
2 /**
3  * Tests to see if the object is an RxJS {@link Observable}
4  * @param obj the object to test
5  */
6 export declare function isObservable<T>(obj: any): obj is Observable<T>;