Docs
Cloudflare
CodeRabbit
Railway
Clerk
SerpAPI
OpenRouter
AG Grid
Netlify
WorkOS
Prisma
Unkey
Sentry
Electric
Cloudflare
CodeRabbit
Railway
Clerk
SerpAPI
OpenRouter
AG Grid
Netlify
WorkOS
Prisma
Unkey
Sentry
Electric
Hotkeys API Reference
Hotkey Sequence API Reference
Key hold & held keys API Reference
Hotkey Recorder API Reference
Hotkey Sequence Recorder API Reference
Normalization & format API Reference
Hotkey Sequence API Reference

UseHotkeySequenceOptions

Interface: UseHotkeySequenceOptions

Defined in: packages/vue-hotkeys/src/useHotkeySequence.ts:12

Extends

  • Omit<SequenceOptions, "enabled" | "target">

Properties

enabled?

ts
optional enabled: MaybeRefOrGetter<boolean>;
optional enabled: MaybeRefOrGetter<boolean>;

Defined in: packages/vue-hotkeys/src/useHotkeySequence.ts:21

Whether the sequence is active. Can be a Ref, a getter function, or a boolean value. Defaults to true.


target?

ts
optional target: MaybeRefOrGetter<HTMLElement | Document | Window | null>;
optional target: MaybeRefOrGetter<HTMLElement | Document | Window | null>;

Defined in: packages/vue-hotkeys/src/useHotkeySequence.ts:27

The DOM element to attach the event listener to. Can be a Ref, a getter function, direct DOM element, or null. Defaults to document.