17 lines
		
	
	
		
			698 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			698 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
/** @stable */
 | 
						|
export declare class RouterTestingModule {
 | 
						|
    static withRoutes(routes: Routes, config?: ExtraOptions): ModuleWithProviders;
 | 
						|
}
 | 
						|
 | 
						|
/** @stable */
 | 
						|
export declare function setupTestingRouter(urlSerializer: UrlSerializer, contexts: ChildrenOutletContexts, location: Location, loader: NgModuleFactoryLoader, compiler: Compiler, injector: Injector, routes: Route[][], opts?: ExtraOptions, urlHandlingStrategy?: UrlHandlingStrategy): Router;
 | 
						|
 | 
						|
/** @stable */
 | 
						|
export declare class SpyNgModuleFactoryLoader implements NgModuleFactoryLoader {
 | 
						|
    stubbedModules: {
 | 
						|
        [path: string]: any;
 | 
						|
    };
 | 
						|
    constructor(compiler: Compiler);
 | 
						|
    load(path: string): Promise<NgModuleFactory<any>>;
 | 
						|
}
 |