mirror of
				https://github.com/fooflington/selfdefined.git
				synced 2025-10-30 21:58:32 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			387 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			387 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { Observable } from '../Observable';
 | |
| /**
 | |
|  * If the source Observable is empty it returns an Observable that emits true, otherwise it emits false.
 | |
|  *
 | |
|  * <img src="./img/isEmpty.png" width="100%">
 | |
|  *
 | |
|  * @return {Observable} An Observable that emits a Boolean.
 | |
|  * @method isEmpty
 | |
|  * @owner Observable
 | |
|  */
 | |
| export declare function isEmpty<T>(this: Observable<T>): Observable<boolean>;
 | 
