@cesdk/node 1.35.0 → 1.36.0-rc.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
@@ -3148,6 +3148,7 @@ export declare class EditorAPI {
3148
3148
 
3149
3149
 
3150
3150
 
3151
+
3151
3152
  /**
3152
3153
  * Subscribe to changes to the editor state.
3153
3154
  * @param callback - This function is called at the end of the engine update, if the editor state has changed.
@@ -3167,6 +3168,11 @@ export declare class EditorAPI {
3167
3168
  * @returns "Transform", "Crop", "Text", "Playback", "Trim" or a custom value.
3168
3169
  */
3169
3170
  getEditMode(): EditMode;
3171
+ /**
3172
+ * If an user interaction is happening, e.g., a resize edit with a drag handle or a touch gesture.
3173
+ * @returns True if an interaction is happening.
3174
+ */
3175
+ unstable_isInteractionHappening(): boolean;
3170
3176
  /**
3171
3177
  * Get the type of cursor that should be displayed by the application.
3172
3178
  * @returns The cursor type.