@progress/kendo-vue-layout
Version:
22 lines (21 loc) • 721 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
*-------------------------------------------------------------------------------------------
*/
/**
* Specifies the animation settings of the Drawer.
*
*/
export interface DrawerAnimation {
/**
* Specifies the type of the Drawer animation.
*/
type?: 'slide';
/**
* Specifies the duration of the Drawer animation ([see example]({% slug display_modes_drawer %}#toc-expand-modes)) .
*/
duration: number;
}