@blueprintjs/core
Version:
Core styles & components
17 lines (16 loc) • 573 B
TypeScript
/// <reference types="react" />
import { AbstractPureComponent2, IProps } from "../../common";
import { HotkeyConfig } from "../../hooks";
export declare type IHotkeyProps = IProps & HotkeyConfig;
export declare class Hotkey extends AbstractPureComponent2<IHotkeyProps> {
static displayName: string;
static defaultProps: {
allowInInput: boolean;
disabled: boolean;
global: boolean;
preventDefault: boolean;
stopPropagation: boolean;
};
render(): JSX.Element;
protected validateProps(props: IHotkeyProps): void;
}