UNPKG

@ces/sync

Version:

A function that gets values synchronically from observables that emit synchronically.

3 lines (2 loc) 122 B
import { Observable } from 'rxjs'; export declare const sync: <T>(synchronousObservable: Observable<T>) => T | undefined;