@cesdk/cesdk-js 1.65.0-nightly.20251124 → 1.65.0-rc.1

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
@@ -4738,6 +4738,13 @@ export declare interface RegisteredActions {
4738
4738
  'timeline.zoom.toLevel': TimelineZoomToLevelAction;
4739
4739
  /** Action for resetting the video timeline zoom to default */
4740
4740
  'timeline.zoom.reset': TimelineZoomResetAction;
4741
+ /**
4742
+ * Video timeline expand/collapse actions
4743
+ */
4744
+ /** Action for expanding the video timeline */
4745
+ 'timeline.expand': TimelineExpandAction;
4746
+ /** Action for collapsing the video timeline */
4747
+ 'timeline.collapse': TimelineCollapseAction;
4741
4748
  /**
4742
4749
  * Clipboard actions
4743
4750
  */
@@ -5044,6 +5051,18 @@ declare type ThemeConfig = Theme | ThemeFn | 'system';
5044
5051
  */
5045
5052
  declare type ThemeFn = () => Theme;
5046
5053
 
5054
+ /**
5055
+ * Action function for collapsing the video timeline
5056
+ * @public
5057
+ */
5058
+ export declare type TimelineCollapseAction = () => void;
5059
+
5060
+ /**
5061
+ * Action function for expanding the video timeline
5062
+ * @public
5063
+ */
5064
+ export declare type TimelineExpandAction = () => void;
5065
+
5047
5066
  /**
5048
5067
  * Video timeline zoom action types
5049
5068
  */