@blueprintjs/core
Version:
Core styles & components
12 lines (11 loc) • 412 B
TypeScript
import type { HotkeyConfig } from "../../hooks";
import { type DialogProps } from "../dialog/dialog";
export interface HotkeysDialogProps extends DialogProps {
/**
* This string displayed as the group name in the hotkeys dialog for all
* global hotkeys.
*/
globalGroupName?: string;
hotkeys: readonly HotkeyConfig[];
}
export declare const HotkeysDialog: React.FC<HotkeysDialogProps>;