UNPKG

angular2

Version:

Angular 2 - a web framework for modern web apps

10 lines (9 loc) 260 B
import { Promise } from 'angular2/src/facade/async'; import { Type } from 'angular2/src/facade/lang'; export interface RouteHandler { componentType: Type; resolveComponentType(): Promise<any>; data?: { [key: string]: any; }; }