add test in gulpfile which will compile a basic TS file with generated angular2.d.ts to ensure generated d.ts is valid syntactic TS Adds support for enums in .d.ts generation pipeline. Removes renaming reexports in http module.
90 lines
1.7 KiB
TypeScript
90 lines
1.7 KiB
TypeScript
export {
|
|
DehydratedException,
|
|
ExpressionChangedAfterItHasBeenChecked,
|
|
ChangeDetectionError,
|
|
ChangeDetection,
|
|
ON_PUSH,
|
|
DEFAULT,
|
|
ChangeDetectorRef,
|
|
PipeRegistry,
|
|
WrappedValue,
|
|
Pipe,
|
|
PipeFactory,
|
|
NullPipe,
|
|
NullPipeFactory,
|
|
defaultPipes,
|
|
DynamicChangeDetection,
|
|
JitChangeDetection,
|
|
PreGeneratedChangeDetection,
|
|
preGeneratedProtoDetectors,
|
|
defaultPipeRegistry,
|
|
DirectiveIndex,
|
|
BindingRecord,
|
|
ProtoChangeDetector,
|
|
ChangeDispatcher,
|
|
ChangeDetector,
|
|
Locals,
|
|
ChangeDetectorDefinition,
|
|
BasePipe,
|
|
DirectiveRecord
|
|
} from './change_detection';
|
|
|
|
export {
|
|
Inject,
|
|
InjectPromise,
|
|
InjectLazy,
|
|
Optional,
|
|
Injectable,
|
|
forwardRef,
|
|
resolveForwardRef,
|
|
ForwardRefFn,
|
|
Injector,
|
|
Binding,
|
|
bind,
|
|
Key,
|
|
NoBindingError,
|
|
AbstractBindingError,
|
|
AsyncBindingError,
|
|
CyclicDependencyError,
|
|
InstantiationError,
|
|
InvalidBindingError,
|
|
NoAnnotationError,
|
|
OpaqueToken,
|
|
ResolvedBinding,
|
|
BindingBuilder,
|
|
Dependency
|
|
} from './di';
|
|
|
|
export * from './core';
|
|
export * from './annotations';
|
|
export * from './directives';
|
|
|
|
export {
|
|
AbstractControl,
|
|
Control,
|
|
ControlGroup,
|
|
ControlArray,
|
|
NgControlName,
|
|
NgFormControl,
|
|
NgModel,
|
|
NgControl,
|
|
NgControlGroup,
|
|
NgFormModel,
|
|
NgForm,
|
|
ControlValueAccessor,
|
|
DefaultValueAccessor,
|
|
CheckboxControlValueAccessor,
|
|
SelectControlValueAccessor,
|
|
formDirectives,
|
|
Validators,
|
|
NgValidator,
|
|
NgRequiredValidator,
|
|
FormBuilder,
|
|
formInjectables
|
|
} from './forms';
|
|
|
|
export * from './http';
|
|
export {Observable, EventEmitter} from 'angular2/src/facade/async';
|
|
export * from 'angular2/src/render/api';
|
|
export {DomRenderer, DOCUMENT_TOKEN} from 'angular2/src/render/dom/dom_renderer';
|