Skip to content

Shortcut

概述

Shortcut 类提供了一个静态方法 register,用于注册快捷键命令及其对应的回调函数。

注意,目前仅在 background 类型的指令中能使用。

引入

typescript
import { Shortcut } from 'sofast-extensions';

方法

register

  • 描述: 注册一个快捷键命令及其对应的回调函数。
  • 返回类型: Promise<void>
  • 参数:
    • cmd: string:快捷键命令字符串。
    • callback: (v: any) => void:回调函数,当快捷键被触发时执行。