mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
The BaseRequestOptions class is responsible for declaring default values, while the RequestOptions class is merely responsible for setting values based on values provided in the constructor.
22 lines
No EOL
813 B
TypeScript
22 lines
No EOL
813 B
TypeScript
/**
|
|
* @module
|
|
* @public
|
|
* @description
|
|
* Define angular core API here.
|
|
*/
|
|
export * from './src/core/annotations/view';
|
|
export * from './src/core/application';
|
|
export * from './src/core/application_tokens';
|
|
export * from './src/core/annotations/di';
|
|
|
|
export * from './src/core/compiler/compiler';
|
|
export * from './src/core/compiler/interfaces';
|
|
export * from './src/core/compiler/query_list';
|
|
export * from './src/core/compiler/directive_resolver';
|
|
export * from './src/core/compiler/dynamic_component_loader';
|
|
export {ViewRef, ProtoViewRef} from './src/core/compiler/view_ref';
|
|
export {ViewContainerRef} from './src/core/compiler/view_container_ref';
|
|
export {ElementRef} from './src/core/compiler/element_ref';
|
|
export {EventEmitter} from './src/facade/async';
|
|
|
|
export {NgZone} from './src/core/zone/ng_zone'; |