@workers-community/workers-types 4.20251003.0 → 4.20251008.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 +4 -0
- package/index.ts +4 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -8484,6 +8484,10 @@ type MediaTransformationOutputOptions = {
|
|
|
8484
8484
|
* Duration for video clips, audio extraction, and spritesheet generation (e.g. '5s').
|
|
8485
8485
|
*/
|
|
8486
8486
|
duration?: string;
|
|
8487
|
+
/**
|
|
8488
|
+
* Number of frames in the spritesheet.
|
|
8489
|
+
*/
|
|
8490
|
+
imageCount?: number;
|
|
8487
8491
|
/**
|
|
8488
8492
|
* Output format for the generated media.
|
|
8489
8493
|
*/
|
package/index.ts
CHANGED
|
@@ -8508,6 +8508,10 @@ export type MediaTransformationOutputOptions = {
|
|
|
8508
8508
|
* Duration for video clips, audio extraction, and spritesheet generation (e.g. '5s').
|
|
8509
8509
|
*/
|
|
8510
8510
|
duration?: string;
|
|
8511
|
+
/**
|
|
8512
|
+
* Number of frames in the spritesheet.
|
|
8513
|
+
*/
|
|
8514
|
+
imageCount?: number;
|
|
8511
8515
|
/**
|
|
8512
8516
|
* Output format for the generated media.
|
|
8513
8517
|
*/
|