@cesdk/engine 1.65.0-nightly.20251118 → 1.65.0-nightly.20251120
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.65.0-nightly.20251118-NYDCUMIV.wasm → cesdk-v1.65.0-nightly.20251120-EVNA7RJL.wasm} +0 -0
- package/assets/core/{worker-host-v1.65.0-nightly.20251118.js → worker-host-v1.65.0-nightly.20251120.js} +1 -1
- package/index.d.ts +12 -0
- package/index.js +1 -1
- package/package.json +1 -1
- /package/assets/core/{cesdk-v1.65.0-nightly.20251118-44YCFRT6.data → cesdk-v1.65.0-nightly.20251120-44YCFRT6.data} +0 -0
package/index.d.ts
CHANGED
|
@@ -6472,6 +6472,18 @@ export declare class EditorAPI {
|
|
|
6472
6472
|
* @category History Management
|
|
6473
6473
|
*/
|
|
6474
6474
|
addUndoStep(): void;
|
|
6475
|
+
/**
|
|
6476
|
+
* Remove the last history state from the undo stack.
|
|
6477
|
+
*
|
|
6478
|
+
* Removes the most recent undo step if available.
|
|
6479
|
+
*
|
|
6480
|
+
* ```javascript
|
|
6481
|
+
* engine.editor.removeUndoStep();
|
|
6482
|
+
* ```
|
|
6483
|
+
*
|
|
6484
|
+
* @category History Management
|
|
6485
|
+
*/
|
|
6486
|
+
removeUndoStep(): void;
|
|
6475
6487
|
/**
|
|
6476
6488
|
* Undo one step in the active history if an undo step is available.
|
|
6477
6489
|
*
|