UNPKG

ngx-breadcrumbs

Version:
10 lines (9 loc) 392 B
import { Observable } from "rxjs/Observable"; import 'rxjs/add/observable/fromPromise'; export interface IBreadcrumb { text: string; path: string; } export declare function stringFormat(template: string, binding: any): string; export declare function isPromise(value: any): boolean; export declare function wrapIntoObservable<T>(value: T | Promise<T> | Observable<T>): Observable<T>;