@cesdk/node 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-S3LZUPQ2.wasm → cesdk-v1.65.0-nightly.20251120-CAMQRBXE.wasm} +0 -0
- 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
|
Binary file
|
package/index.d.ts
CHANGED
|
@@ -6206,6 +6206,18 @@ export declare class EditorAPI {
|
|
|
6206
6206
|
* @category History Management
|
|
6207
6207
|
*/
|
|
6208
6208
|
addUndoStep(): void;
|
|
6209
|
+
/**
|
|
6210
|
+
* Remove the last history state from the undo stack.
|
|
6211
|
+
*
|
|
6212
|
+
* Removes the most recent undo step if available.
|
|
6213
|
+
*
|
|
6214
|
+
* ```javascript
|
|
6215
|
+
* engine.editor.removeUndoStep();
|
|
6216
|
+
* ```
|
|
6217
|
+
*
|
|
6218
|
+
* @category History Management
|
|
6219
|
+
*/
|
|
6220
|
+
removeUndoStep(): void;
|
|
6209
6221
|
/**
|
|
6210
6222
|
* Undo one step in the active history if an undo step is available.
|
|
6211
6223
|
*
|