20 lines
533 B
JavaScript
20 lines
533 B
JavaScript
/**
|
|
* Define public API for Angular here
|
|
*/
|
|
export * from './annotations/annotations';
|
|
export * from './compiler/interfaces';
|
|
export * from './annotations/template_config';
|
|
|
|
export * from './application';
|
|
|
|
export * from 'change_detection/change_detector';
|
|
export * from 'change_detection/record_range';
|
|
export * from 'change_detection/record';
|
|
|
|
export * from './compiler/compiler';
|
|
export * from './compiler/template_loader';
|
|
export * from './compiler/view';
|
|
export * from './compiler/viewport';
|
|
|
|
export * from 'core/dom/element';
|