@ibyar/core
Version:
Ibyar core, Implements Aurora's core functionality, low-level services, and utilities
33 lines • 1.13 kB
TypeScript
export interface OnChanges {
onChanges(): void;
}
export declare function isOnChanges(object: any): object is OnChanges;
export interface OnInit {
onInit(): void;
}
export declare function isOnInit(object: any): object is OnInit;
export interface DoCheck {
doCheck(): void;
}
export declare function isDoCheck(object: any): object is DoCheck;
export interface AfterContentInit {
afterContentInit(): void;
}
export declare function isAfterContentInit(object: any): object is AfterContentInit;
export interface AfterContentChecked {
afterContentChecked(): void;
}
export declare function isAfterContentChecked(object: any): object is AfterContentChecked;
export interface AfterViewInit {
afterViewInit(): void;
}
export declare function isAfterViewInit(object: any): object is AfterViewInit;
export interface AfterViewChecked {
afterViewChecked(): void;
}
export declare function isAfterViewChecked(object: any): object is AfterViewChecked;
export interface OnDestroy {
onDestroy(): void;
}
export declare function isOnDestroy(object: any): object is OnDestroy;
//# sourceMappingURL=lifecycle.d.ts.map