项目原始demo,不改动
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 

12 rivejä
387 B

  1. import { Observable } from '../Observable';
  2. /**
  3. * If the source Observable is empty it returns an Observable that emits true, otherwise it emits false.
  4. *
  5. * <img src="./img/isEmpty.png" width="100%">
  6. *
  7. * @return {Observable} An Observable that emits a Boolean.
  8. * @method isEmpty
  9. * @owner Observable
  10. */
  11. export declare function isEmpty<T>(this: Observable<T>): Observable<boolean>;