2015-09-02 19:43:39 -04:00
|
|
|
/**
|
|
|
|
* @module
|
|
|
|
* @description
|
|
|
|
* Defines interfaces to be implemented by directives when they need to hook into the change
|
|
|
|
* detection mechanism.
|
|
|
|
*/
|
|
|
|
|
|
|
|
export {
|
|
|
|
AfterContentInit,
|
|
|
|
AfterContentChecked,
|
|
|
|
AfterViewInit,
|
|
|
|
AfterViewChecked,
|
|
|
|
OnChanges,
|
|
|
|
OnDestroy,
|
|
|
|
OnInit,
|
|
|
|
DoCheck
|
2015-10-02 10:37:23 -04:00
|
|
|
} from './src/core/linker/interfaces';
|