emptyOn this pageempty Types function empty<GValue = any>(): IObservable<GValue> Definition Creates an Observable, which never emits a value. Example const subscribe = empty();empty(() => { console.log('never appends');});