fix(api): remove UNDEFINED
This commit is contained in:
parent
f7d46e7159
commit
6db9f9013d
|
@ -13,7 +13,6 @@ import {
|
|||
Injector,
|
||||
ProtoInjector,
|
||||
Visibility,
|
||||
UNDEFINED,
|
||||
Key,
|
||||
Dependency,
|
||||
bind,
|
||||
|
@ -25,6 +24,7 @@ import {
|
|||
resolveForwardRef,
|
||||
DependencyProvider
|
||||
} from 'angular2/src/core/di';
|
||||
import {UNDEFINED} from 'angular2/src/core/di/injector';
|
||||
import {
|
||||
InjectorInlineStrategy,
|
||||
InjectorDynamicStrategy,
|
||||
|
|
|
@ -23,8 +23,7 @@ export {
|
|||
ProtoInjector,
|
||||
BindingWithVisibility,
|
||||
DependencyProvider,
|
||||
Visibility,
|
||||
UNDEFINED
|
||||
Visibility
|
||||
} from './di/injector';
|
||||
export {
|
||||
Binding,
|
||||
|
|
|
@ -5,7 +5,7 @@ import {BaseException, WrappedException} from 'angular2/src/core/facade/exceptio
|
|||
|
||||
import {Directive, Attribute} from 'angular2/src/core/metadata';
|
||||
import {DynamicComponentLoader, ComponentRef, ElementRef} from 'angular2/src/core/compiler';
|
||||
import {Injector, bind, Dependency, UNDEFINED} from 'angular2/src/core/di';
|
||||
import {Injector, bind, Dependency} from 'angular2/src/core/di';
|
||||
|
||||
import * as routerMod from './router';
|
||||
import {ComponentInstruction, RouteParams} from './instruction';
|
||||
|
|
|
@ -848,8 +848,6 @@ const NG_API = [
|
|||
'TypeLiteral',
|
||||
'TypeLiteral.type',
|
||||
|
||||
'UNDEFINED', // TODO: private
|
||||
|
||||
'UpperCasePipe',
|
||||
'UpperCasePipe.transform',
|
||||
|
||||
|
|
Loading…
Reference in New Issue