clarity-angular
Version:
Angular components for Clarity
23 lines (22 loc) • 784 B
TypeScript
import { EventEmitter, OnDestroy, OnInit } from "@angular/core";
import { Alert } from "./alert";
import { MultiAlertService } from "./providers/multi-alert-service";
export declare class AlertsPager implements OnInit, OnDestroy {
multiAlertService: MultiAlertService;
private multiAlertServiceChanges;
/**
* Input/Output to support two way binding on current alert instance
*/
currentAlert: Alert;
currentAlertChange: EventEmitter<Alert>;
/**
* Input/Output to support two way binding on current alert index
*/
currentAlertIndex: number;
currentAlertIndexChange: EventEmitter<number>;
constructor(multiAlertService: MultiAlertService);
ngOnInit(): void;
pageUp(): void;
pageDown(): void;
ngOnDestroy(): void;
}