@progress/kendo-react-grid
Version:
KendoReact Grid package
20 lines (19 loc) • 533 B
TypeScript
import * as React from 'react';
/**
* 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;
}
/**
* The GridColumnMenuItemContent that will be used inside the Grid ColumnMenu.
*/
export declare class GridColumnMenuItemContent extends React.Component<GridColumnMenuItemContentProps, {}> {
/**
* @hidden
*/
render(): JSX.Element;
}