mode_edit code API / rxjs/index CompletionObserver interface stable interface CompletionObserver<T> { closed?: boolean next?: (value: T) => void error?: (err: any) => void complete: () => void } Properties PropertyTypeDescription closed boolean next (value: T) => void error (err: any) => void complete () => void