UNPKG

angular2

Version:

Angular 2 - a web framework for modern web apps

10 lines (8 loc) 272 B
import {Promise, PromiseWrapper} 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; }