@progress/kendo-vue-layout
Version:
31 lines (30 loc) • 882 B
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { StepperHandle } from './../interfaces/StepperHandle';
/**
* The `StepperOnNavigateEvent` event.
*/
export declare class StepperOnNavigateEvent {
/**
* The Stepper component.
*/
target: StepperHandle;
event: any;
/**
* The previous index of the Step.
*/
prevIndex: number;
/**
* The new index of the Step.
*/
nextIndex: number;
/**
* @hidden
*/
constructor(target: StepperHandle, prevIndex: number, nextIndex: number);
}