air-lib
Version:
This is Air's angular component library
16 lines (15 loc) • 394 B
TypeScript
import { ApiCallInfo } from '../entities/api-call-info';
export interface IPagingEvent {
previousIndex: number;
currentIndex: number;
startIndex: number;
total: number;
backUrl: string;
hash: string | null;
targetUrl: string;
detailsUrl: string;
currentId: string;
itemsOnPage: number;
apiCall: ApiCallInfo;
eventSource: string;
}