@lithiumjs/angular
Version:
Reactive components made easy. Lithium provides utilities that enable seamless reactive state and event interactions for Angular components.
14 lines (13 loc) • 430 B
TypeScript
export declare enum AngularLifecycleType {
OnChanges = "ngOnChanges",
OnInit = "ngOnInit",
OnDestroy = "ngOnDestroy",
DoCheck = "ngDoCheck",
AfterContentInit = "ngAfterContentInit",
AfterContentChecked = "ngAfterContentChecked",
AfterViewInit = "ngAfterViewInit",
AfterViewChecked = "ngAfterViewChecked"
}
export declare namespace AngularLifecycleType {
const values: AngularLifecycleType[];
}