feat(upgrade): export VERSION from `upgrade/static` (#14037)

PR Close #14037
This commit is contained in:
Georgios Kalpakas 2017-02-01 05:18:28 +02:00 committed by Miško Hevery
parent ea63676970
commit 7670cc1a86
2 changed files with 4 additions and 0 deletions

View File

@ -14,6 +14,7 @@
*/
export {downgradeComponent} from './src/common/downgrade_component';
export {downgradeInjectable} from './src/common/downgrade_injectable';
export {VERSION} from './src/common/version';
export {UpgradeComponent} from './src/static/upgrade_component';
export {UpgradeModule} from './src/static/upgrade_module';

View File

@ -27,3 +27,6 @@ export declare class UpgradeModule {
ngZone: NgZone);
bootstrap(element: Element, modules?: string[], config?: any): void;
}
/** @stable */
export declare const VERSION: Version;