UNPKG

@vericus/slate-kit-bind-hotkey

Version:

a slate helper plugin to associate hotkey(s) to slate change

12 lines 391 B
import Options from "./options"; import createOnKeyDown from "./onKeyDown"; function createHotKeyPlugin(pluginOptions) { if (pluginOptions === void 0) { pluginOptions = {}; } var options = new Options(pluginOptions); var onKeyDown = createOnKeyDown(options); return { onKeyDown: onKeyDown, }; } export default createHotKeyPlugin; //# sourceMappingURL=index.js.map