chore(docs): added more docs for core.ts
This commit is contained in:
@ -4,52 +4,33 @@
|
||||
* Change detection enables data binding in Angular.
|
||||
*/
|
||||
|
||||
export {
|
||||
ASTWithSource,
|
||||
AST,
|
||||
AstTransformer,
|
||||
AccessMember,
|
||||
LiteralArray,
|
||||
ImplicitReceiver
|
||||
} from './src/change_detection/parser/ast';
|
||||
|
||||
export {Lexer} from './src/change_detection/parser/lexer';
|
||||
export {Parser} from './src/change_detection/parser/parser';
|
||||
export {Locals} from './src/change_detection/parser/locals';
|
||||
|
||||
export {
|
||||
DehydratedException,
|
||||
ExpressionChangedAfterItHasBeenChecked,
|
||||
ChangeDetectionError
|
||||
} from './src/change_detection/exceptions';
|
||||
export {
|
||||
ProtoChangeDetector,
|
||||
ChangeDetector,
|
||||
ChangeDispatcher,
|
||||
ChangeDetection,
|
||||
ChangeDetectorDefinition
|
||||
} from './src/change_detection/interfaces';
|
||||
export {
|
||||
CHECK_ONCE,
|
||||
CHECK_ALWAYS,
|
||||
DETACHED,
|
||||
CHECKED,
|
||||
ON_PUSH,
|
||||
DEFAULT
|
||||
} from './src/change_detection/constants';
|
||||
export {DynamicProtoChangeDetector} from './src/change_detection/proto_change_detector';
|
||||
export {BindingRecord} from './src/change_detection/binding_record';
|
||||
export {DirectiveIndex, DirectiveRecord} from './src/change_detection/directive_record';
|
||||
export {DynamicChangeDetector} from './src/change_detection/dynamic_change_detector';
|
||||
export {ChangeDetectorRef} from './src/change_detection/change_detector_ref';
|
||||
export {Pipes} from './src/change_detection/pipes/pipes';
|
||||
export {uninitialized} from './src/change_detection/change_detection_util';
|
||||
export {WrappedValue, Pipe, PipeFactory, BasePipe} from './src/change_detection/pipes/pipe';
|
||||
export {NullPipe, NullPipeFactory} from './src/change_detection/pipes/null_pipe';
|
||||
export {
|
||||
defaultPipes,
|
||||
DEFAULT,
|
||||
|
||||
ExpressionChangedAfterItHasBeenCheckedException,
|
||||
ChangeDetectionError,
|
||||
|
||||
ChangeDetectorRef,
|
||||
|
||||
WrappedValue,
|
||||
Pipe,
|
||||
Pipes,
|
||||
PipeFactory,
|
||||
BasePipe,
|
||||
NullPipe,
|
||||
NullPipeFactory,
|
||||
|
||||
ChangeDetector,
|
||||
ChangeDispatcher,
|
||||
ChangeDetection,
|
||||
ChangeDetectorDefinition,
|
||||
DynamicChangeDetection,
|
||||
JitChangeDetection,
|
||||
PreGeneratedChangeDetection,
|
||||
preGeneratedProtoDetectors
|
||||
} from './src/change_detection/change_detection';
|
||||
} from 'angular2/src/change_detection/change_detection';
|
||||
|
Reference in New Issue
Block a user