@mui/x-data-grid
Version:
The Community plan edition of the MUI X Data Grid components.
7 lines • 529 B
TypeScript
import * as React from 'react';
export declare function isPrintableKey(event: React.KeyboardEvent<HTMLElement>): boolean;
export declare const isNavigationKey: (key: string) => boolean;
export declare const isKeyboardEvent: (event: any) => event is React.KeyboardEvent<HTMLElement>;
export declare const isHideMenuKey: (key: React.KeyboardEvent["key"]) => key is "Tab" | "Escape";
export declare function isPasteShortcut(event: React.KeyboardEvent): boolean;
export declare function isCopyShortcut(event: KeyboardEvent): boolean;