import { Observable } from '../Observable'; /** * Creates an Observable that emits no items to the Observer and immediately * emits a complete notification. * * @return An Observable that emits only the complete notification. */ export function empty(): Observable { return new Observable(subscriber => { subscriber.complete(); }); }