import { EventConsumerScope } from '@oinone/kunlun-event'; import type { ReturnVoid } from '@oinone/kunlun-shared'; export type ClickResult = ReturnVoid | boolean | Record | Record[]; export interface ActionKeyboardConfig extends Record { key: string; scope?: EventConsumerScope; invisibleDeactivated?: boolean; ctrl?: boolean; alt?: boolean; shift?: boolean; }