2016-06-21 12:17:30 -07:00

7 lines
346 B
TypeScript

import { UrlTree } from './url_tree';
import { RouterStateSnapshot } from './router_state';
import { RouterConfig } from './config';
import { Type } from '@angular/core';
import { Observable } from 'rxjs/Observable';
export declare function recognize(rootComponentType: Type, config: RouterConfig, url: UrlTree): Observable<RouterStateSnapshot>;