@cesdk/engine 1.77.0-rc.4 → 1.77.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts CHANGED
@@ -11067,13 +11067,13 @@ export declare class ShortcutsAPI {
11067
11067
  scopes: ShortcutScopeId | ShortcutScopeId[];
11068
11068
  }): Shortcut | undefined;
11069
11069
  /**
11070
- * List the shortcuts matching `options` (`keys` AND `scopes`, glob-matched).
11071
- * Both fields are required and must be non-empty; `{ keys: '*', scopes: '*' }`
11072
- * lists everything. Throws on an empty `keys`/`scopes`.
11070
+ * List the shortcuts whose scope matches `options.scopes` (glob-matched).
11071
+ * `scopes` is required and must be non-empty; `{ scopes: '*' }` lists
11072
+ * everything. Throws on an empty `scopes`. To find a rule by chord use
11073
+ * `get`/`has`.
11073
11074
  * @public
11074
11075
  */
11075
11076
  list(options: {
11076
- keys: string | string[];
11077
11077
  scopes: ShortcutScopeId | ShortcutScopeId[];
11078
11078
  }): Shortcut[];
11079
11079
  /**