@shotstack/shotstack-studio 2.13.1 → 2.13.3

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/dist/index.d.ts CHANGED
@@ -196,7 +196,8 @@ export declare class Edit {
196
196
  }): Edit_2;
197
197
  /**
198
198
  * Look up a clip by its stable ID.
199
- * @returns The clip or null if no clip with that ID exists.
199
+ * @returns A copy of the clip, or null if no clip with that ID exists. Mutating the
200
+ * returned object has no effect on the edit — use `updateClipById` to make changes.
200
201
  */
201
202
  getClipById(clipId: string): Clip | null;
202
203
  /**
@@ -85,7 +85,8 @@ export declare class Edit {
85
85
  }): Edit_2;
86
86
  /**
87
87
  * Look up a clip by its stable ID.
88
- * @returns The clip or null if no clip with that ID exists.
88
+ * @returns A copy of the clip, or null if no clip with that ID exists. Mutating the
89
+ * returned object has no effect on the edit — use `updateClipById` to make changes.
89
90
  */
90
91
  getClipById(clipId: string): Clip | null;
91
92
  /**