UNPKG

@progress/kendo-angular-scrollview

Version:

A ScrollView Component for Angular

19 lines (18 loc) 637 B
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * Arguments for the `itemChanged` event. * The `itemChanged` event fires when the current item is changed. */ export interface ItemChangedEvent { /** * The changed item. */ item: any; /** * The index of the changed item. */ index: number; }