UNPKG

ngx-serial-route-guards

Version:

Collection of utility functions for executing functional Angular Route Guards serially.

4 lines (3 loc) 208 B
import { Observable } from 'rxjs'; export declare const wrapIntoObservable: <T>(input: Promise<T> | Observable<T> | T) => Observable<T>; export declare const isPromise: (obj: any) => obj is Promise<unknown>;