@progress/kendo-angular-progressbar
Version:
Kendo UI Angular component starter template
32 lines (31 loc) • 965 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Represents the settings of the animation which indicates the progress status of the ProgressBar.
*
* @example
* ```ts-preview
* _@Component({
* selector: 'my-app',
* template: `
* <kendo-progressbar
* [value]="value"
* [animation]="{duration: duration}">
* </kendo-progressbar>
* `
* })
* class AppComponent {
* public value = 50;
* public duration = 1000;
* }
* ```
*/
export interface ProgressBarAnimation {
/**
* The duration of the animation in milliseconds.
* Defaults to `400`.
*/
duration: number;
}