UNPKG

@waradu/keyboard

Version:

A keyboard manager compatible with JavaScript, TypeScript and Nuxt

7 lines (6 loc) 259 B
import type { KeySequence, Options } from "@waradu/keyboard"; import type { Directive } from "vue"; type Modifiers = "prevent" | "stop"; type Arg = KeySequence; export declare const vKeybind: Directive<HTMLElement, Options["run"], Modifiers, Arg>; export {};