@cesdk/node 1.65.0-nightly.20251119 → 1.65.0-nightly.20251121

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
@@ -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
  *