@blueprintjs/core
Version:
Core styles & components
13 lines (12 loc) • 435 B
TypeScript
import * as React from "react";
import { HotkeyConfig } from "../../hooks";
import { 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 HotkeysDialog2: React.FC<HotkeysDialogProps>;