@progress/kendo-angular-notification
Version:
Kendo UI Notification for Angular
17 lines (16 loc) • 696 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Specifies the animation settings of the Notification
* ([see example]({% slug animations_notification %})).
*
* The possible values are:
* * `duration`—Accepts a number in milliseconds (default: 500ms).
* * `type?: 'slide'|'fade' (default)`
*/
export type Animation = {
duration: number;
type?: 'slide' | 'fade';
};