7 lines
346 B
TypeScript
Raw Normal View History

import { UrlTree } from './url_tree';
2016-06-02 15:30:49 -07:00
import { RouterStateSnapshot } from './router_state';
import { RouterConfig } from './config';
2016-06-02 15:30:49 -07:00
import { Type } from '@angular/core';
import { Observable } from 'rxjs/Observable';
2016-06-02 15:30:49 -07:00
export declare function recognize(rootComponentType: Type, config: RouterConfig, url: UrlTree): Observable<RouterStateSnapshot>;