mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
15 lines
429 B
JavaScript
15 lines
429 B
JavaScript
/**
|
|
* Define public API for Angular here
|
|
*/
|
|
export * from './annotations/directive';
|
|
export * from './annotations/component';
|
|
export * from './annotations/template_config';
|
|
|
|
export * from 'change_detection/change_detector';
|
|
export * from 'change_detection/watch_group';
|
|
export * from 'change_detection/record';
|
|
|
|
export * from './compiler/compiler';
|
|
export * from './compiler/template_loader';
|
|
export * from './compiler/view';
|
|
|