-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcore.ts
More file actions
14 lines (14 loc) · 1.03 KB
/
core.ts
File metadata and controls
14 lines (14 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export {Component, HostElement, HostEvent, Input, Output, Required, Directive, ParentComponent, ChildDirective, ChildrenDirective} from './src/Entity/Metadata';
export {Filter} from './src/Templating/Filters/Metadata';
export {Application} from './src/Application';
export {ApplicationTemplate} from './src/Templating/Templates/ApplicationTemplate';
export {AbstractComponentTemplate} from './src/Templating/Templates/AbstractComponentTemplate';
export {ComponentCompiler} from './src/Templating/Compilers/ComponentCompiler';
export {CompilerFactory} from './src/Templating/Compilers/CompilerFactory';
export {Translator} from './src/Translations/Translator';
export {ElementRef} from './src/Templating/ElementRef';
export {TemplateRef} from './src/Templating/TemplateRef';
export {ChangeDetectorRef} from './src/ChangeDetection/ChangeDetectorRef';
export {ChildrenDirectivesQuery} from './src/Templating/ChildrenDirectivesQuery';
export {ChangeDetectionStrategy} from './src/constants';
export {OnInit, OnDestroy, OnUpdate} from './src/Interfaces';