@progress/kendo-vue-layout
Version:
22 lines (21 loc) • 704 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 { DrawerSelectEvent } from './DrawerSelectEvent';
/**
* @hidden
*/
export interface DrawerNavigationProps {
item?: any;
header?: any;
footer?: any;
content?: any;
showLicenseWatermark?: boolean;
licenseMessage?: string;
tabIndex?: number;
onSelect?: (event: DrawerSelectEvent) => void;
}