UNPKG

@mui/x-data-grid

Version:

The Community plan edition of the MUI X Data Grid components.

12 lines 933 B
import type * 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 "Escape" | "Tab"; export declare function isPasteShortcut(event: React.KeyboardEvent): boolean; export declare function isCopyShortcut(event: KeyboardEvent): boolean; export declare function isSelectAllShortcut(event: React.KeyboardEvent): boolean; export declare function isUndoShortcut(event: React.KeyboardEvent): boolean; export declare function isFillDownShortcut(event: React.KeyboardEvent): boolean; export declare function isFillRightShortcut(event: React.KeyboardEvent): boolean; export declare function isRedoShortcut(event: React.KeyboardEvent): boolean;