UNPKG

angular2

Version:

Angular 2 - a web framework for modern web apps

9 lines (8 loc) 275 B
import { Promise } from 'angular2/src/facade/async'; import { Type } from 'angular2/src/facade/lang'; import { RouteData } from './instruction'; export interface RouteHandler { componentType: Type; resolveComponentType(): Promise<any>; data: RouteData; }