@progress/kendo-angular-pager
Version:
Kendo UI Angular Pager
18 lines (17 loc) • 617 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Represents the event arguments for the `pageChange` event of the Pager.
*/
export interface PageChangeEvent {
/**
* The number of records to skip.
*/
skip: number;
/**
* The number of records to take.
*/
take: number;
}