16 lines
415 B
JavaScript
16 lines
415 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_detection';
|
|
export * from 'change_detection/record';
|
|
|
|
export * from './compiler/compiler';
|
|
export * from './compiler/template_loader';
|
|
|
|
export * from './view/proto_view';
|
|
export * from './view/view';
|