UNPKG

@progress/kendo-vue-grid

Version:
27 lines (26 loc) 1.15 kB
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { PropType } from 'vue'; /** * The props of the GridColumnMenuItemContent component. */ export interface GridColumnMenuItemContentProps { /** * The `show` state of the component. Each change is animated with the Reveal animation. */ show: boolean; } /** * @hidden */ declare const GridColumnMenuItemContent: import('vue').DefineComponent<import('vue').ExtractPropTypes<{ show: PropType<boolean>; }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{ show: PropType<boolean>; }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { GridColumnMenuItemContent };