UNPKG

@progress/kendo-angular-notification

Version:

Kendo UI Notification for Angular

17 lines (16 loc) 737 B
/**----------------------------------------------------------------------------------------- * Copyright © 2026 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](https://www.telerik.com/kendo-angular-ui/components/notification/animations)). * * The possible values are: * * `duration`—Accepts a number in milliseconds (default: 500ms). * * `type?: 'slide'|'fade' (default)` */ export type Animation = { duration: number; type?: 'slide' | 'fade'; };