TanStack
Hotkey Recorder API Reference

HotkeyConflictOptions

Defined in: conflicts.ts:15

Properties

events?

ts
optional events?: readonly KeyboardEvent[];

Defined in: conflicts.ts:33

Source events allow detecting physical/logical overlap on the recorded layout.


eventType?

ts
optional eventType?: "keyup" | "keydown";

Defined in: conflicts.ts:21

Intended event type. Default: keydown.


exclude?

ts
optional exclude?: (registration) => boolean;

Defined in: conflicts.ts:27

Additional app-specific exclusions, such as all instances of one action.

Parameters

registration

| HotkeyRegistrationView | SequenceRegistrationView

Returns

boolean


excludeIds?

ts
optional excludeIds?: readonly string[];

Defined in: conflicts.ts:25

IDs of registrations being edited.


includeDisabled?

ts
optional includeDisabled?: boolean;

Defined in: conflicts.ts:23

Include disabled registrations. Default: false.


platform?

ts
optional platform?: "mac" | "windows" | "linux";

Defined in: conflicts.ts:31

Platform used to resolve Mod in the candidate. Registrations retain their own platform.


scope?

ts
optional scope?: "all" | "overlapping";

Defined in: conflicts.ts:19

Check all targets instead of overlapping targets. Default: overlapping.


target?

ts
optional target?: Document | Window | HTMLElement;

Defined in: conflicts.ts:17

Intended registration target. Defaults to document; disjoint targets are excluded.