@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/assets/core/{cesdk-v1.77.0-rc.4-XBQOCY46.wasm → cesdk-v1.77.0-WRIUASJL.wasm} +0 -0
- package/assets/core/{worker-host-v1.77.0-rc.4.js → worker-host-v1.77.0.js} +1 -1
- package/index.d.ts +4 -4
- package/index.js +1 -1
- package/package.json +1 -1
- /package/assets/core/{cesdk-v1.77.0-rc.4-MLEZSZ4D.data → cesdk-v1.77.0-MLEZSZ4D.data} +0 -0
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
|
|
11071
|
-
*
|
|
11072
|
-
*
|
|
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
|
/**
|