@shotstack/shotstack-studio 1.2.2 → 1.4.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/dist/shotstack-studio.es.js +5110 -4533
- package/dist/shotstack-studio.umd.js +8 -6
- package/dist/src/components/canvas/index.d.ts +14 -0
- package/dist/{core/entities → src/components/canvas/players}/audio-player.d.ts +3 -3
- package/dist/{core/entities → src/components/canvas/players}/html-player.d.ts +3 -3
- package/dist/{core/entities → src/components/canvas/players}/image-player.d.ts +3 -3
- package/dist/{core/entities → src/components/canvas/players}/luma-player.d.ts +3 -3
- package/dist/{core/entities → src/components/canvas/players}/player.d.ts +5 -4
- package/dist/{core/entities → src/components/canvas/players}/shape-player.d.ts +3 -3
- package/dist/src/components/canvas/players/text-player.d.ts +19 -0
- package/dist/{core/entities → src/components/canvas/players}/video-player.d.ts +3 -3
- package/dist/{core → src/components/canvas}/shotstack-canvas.d.ts +2 -2
- package/dist/{core/entities → src/components/canvas/system}/inspector.d.ts +1 -1
- package/dist/src/components/canvas/text/text-cursor.d.ts +47 -0
- package/dist/src/components/canvas/text/text-editor.d.ts +43 -0
- package/dist/src/components/canvas/text/text-input-handler.d.ts +54 -0
- package/dist/src/core/commands/add-clip-command.d.ts +14 -0
- package/dist/src/core/commands/add-track-command.d.ts +8 -0
- package/dist/src/core/commands/delete-clip-command.d.ts +10 -0
- package/dist/src/core/commands/delete-track-command.d.ts +9 -0
- package/dist/src/core/commands/set-updated-clip-command.d.ts +17 -0
- package/dist/src/core/commands/types.d.ts +25 -0
- package/dist/src/core/commands/update-text-content-command.d.ts +16 -0
- package/dist/{core/entities → src/core}/edit.d.ts +13 -7
- package/dist/{core → src/core}/export/video-exporter.d.ts +2 -2
- package/dist/{core → src/core}/inputs/controls.d.ts +1 -1
- package/dist/{core → src/core}/schemas/clip.d.ts +78 -78
- package/dist/{core → src/core}/schemas/edit.d.ts +302 -302
- package/dist/{core → src/core}/schemas/track.d.ts +106 -106
- package/dist/src/index.d.ts +4 -0
- package/dist/vite.config.d.ts +2 -0
- package/package.json +1 -1
- package/readme.md +17 -6
- package/dist/core/entities/text-player.d.ts +0 -18
- package/dist/index.d.ts +0 -4
- package/dist/{core → src/core}/animations/curve-interpolator.d.ts +0 -0
- package/dist/{core → src/core}/animations/effect-preset-builder.d.ts +0 -0
- package/dist/{core → src/core}/animations/keyframe-builder.d.ts +0 -0
- package/dist/{core → src/core}/animations/transition-preset-builder.d.ts +0 -0
- package/dist/{core → src/core}/events/asset-load-tracker.d.ts +0 -0
- package/dist/{core → src/core}/events/event-emitter.d.ts +0 -0
- package/dist/{core → src/core}/inputs/pointer.d.ts +0 -0
- package/dist/{core → src/core}/layouts/geometry.d.ts +0 -0
- package/dist/{core → src/core}/layouts/position-builder.d.ts +0 -0
- package/dist/{core → src/core}/loaders/asset-loader.d.ts +0 -0
- package/dist/{core → src/core}/loaders/audio-load-parser.d.ts +0 -0
- package/dist/{core → src/core}/loaders/font-load-parser.d.ts +0 -0
- package/dist/{core → src/core}/schemas/asset.d.ts +32 -32
- package/dist/{core → src/core}/schemas/audio-asset.d.ts +8 -8
- package/dist/{core → src/core}/schemas/html-asset.d.ts +2 -2
- package/dist/{core → src/core}/schemas/image-asset.d.ts +2 -2
- package/dist/{core → src/core}/schemas/keyframe.d.ts +2 -2
- package/dist/{core → src/core}/schemas/luma-asset.d.ts +2 -2
- package/dist/{core → src/core}/schemas/shape-asset.d.ts +0 -0
- package/dist/{core → src/core}/schemas/text-asset.d.ts +0 -0
- package/dist/{core → src/core}/schemas/video-asset.d.ts +8 -8
- /package/dist/{core/entities → src/core/shared}/entity.d.ts +0 -0
- /package/dist/{main.d.ts → src/main.d.ts} +0 -0
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -16,6 +16,13 @@ Try Shotstack Studio in your preferred framework:
|
|
|
16
16
|
[](https://stackblitz.com/edit/shotstack-studio-angular?file=src%2Fmain.ts)
|
|
17
17
|
[](https://stackblitz.com/edit/shotstack-studio-nextjs?file=app%2Fpage.tsx)
|
|
18
18
|
|
|
19
|
+
## Features
|
|
20
|
+
|
|
21
|
+
- Create video compositions with multiple tracks and clips
|
|
22
|
+
- WYSIWYG text editing
|
|
23
|
+
- Use in conjunction with the [Shotstack Edit API](https://shotstack.io/docs/guide/getting-started/hello-world-using-curl/) to render video
|
|
24
|
+
- Export to video using browser-based FFmpeg
|
|
25
|
+
|
|
19
26
|
## Installation
|
|
20
27
|
|
|
21
28
|
```bash
|
|
@@ -68,12 +75,6 @@ Your HTML should include a container with the `data-shotstack-studio` attribute:
|
|
|
68
75
|
<div data-shotstack-studio></div>
|
|
69
76
|
```
|
|
70
77
|
|
|
71
|
-
## Features
|
|
72
|
-
|
|
73
|
-
- Create video compositions with multiple tracks and clips
|
|
74
|
-
- Use in conjunction with the [Shotstack Edit API](https://shotstack.io/docs/guide/getting-started/hello-world-using-curl/) to render video
|
|
75
|
-
- Export to video using browser-based FFmpeg
|
|
76
|
-
|
|
77
78
|
## Main Components
|
|
78
79
|
|
|
79
80
|
### Edit
|
|
@@ -108,6 +109,10 @@ edit.addTrack(1, { clips: [] });
|
|
|
108
109
|
edit.deleteClip(0, 0);
|
|
109
110
|
edit.deleteTrack(1);
|
|
110
111
|
|
|
112
|
+
// Undo/Redo
|
|
113
|
+
edit.undo();
|
|
114
|
+
edit.redo();
|
|
115
|
+
|
|
111
116
|
// Get edit information
|
|
112
117
|
const clip = edit.getClip(0, 0);
|
|
113
118
|
const track = edit.getTrack(0);
|
|
@@ -173,6 +178,8 @@ await controls.load();
|
|
|
173
178
|
// Shift + Arrow - Seek larger amount
|
|
174
179
|
// Comma - Step backward one frame
|
|
175
180
|
// Period - Step forward one frame
|
|
181
|
+
// Cmd/Ctrl + Z - Undo
|
|
182
|
+
// Cmd/Ctrl + Shift + Z - Redo
|
|
176
183
|
```
|
|
177
184
|
|
|
178
185
|
### VideoExporter
|
|
@@ -276,11 +283,15 @@ Creates a new Edit instance with the specified dimensions and background color.
|
|
|
276
283
|
- `getTrack(trackIdx: number)` - Get a track by index
|
|
277
284
|
- `deleteTrack(trackIdx: number)` - Delete a track
|
|
278
285
|
- `getEdit()` - Get the full edit configuration as a JSON object
|
|
286
|
+
- `undo()` - Undo the last editing operation
|
|
287
|
+
- `redo()` - Redo the last undone operation
|
|
279
288
|
|
|
280
289
|
#### Events
|
|
281
290
|
|
|
282
291
|
- `clip:selected` - Triggered when a clip is selected
|
|
283
292
|
- `clip:updated` - Triggered when a clip is modified
|
|
293
|
+
- `edit:undo` - Triggered when an undo operation is performed
|
|
294
|
+
- `edit:redo` - Triggered when a redo operation is performed
|
|
284
295
|
|
|
285
296
|
### Canvas
|
|
286
297
|
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { type Size } from "../layouts/geometry";
|
|
2
|
-
import { type Clip } from "../schemas/clip";
|
|
3
|
-
import type { Edit } from "./edit";
|
|
4
|
-
import { Player } from "./player";
|
|
5
|
-
/**
|
|
6
|
-
* TODO: Add constants for text defaults
|
|
7
|
-
*/
|
|
8
|
-
export declare class TextPlayer extends Player {
|
|
9
|
-
private background;
|
|
10
|
-
private text;
|
|
11
|
-
constructor(timeline: Edit, clipConfiguration: Clip);
|
|
12
|
-
load(): Promise<void>;
|
|
13
|
-
update(deltaTime: number, elapsed: number): void;
|
|
14
|
-
draw(): void;
|
|
15
|
-
dispose(): void;
|
|
16
|
-
getSize(): Size;
|
|
17
|
-
protected getFitScale(): number;
|
|
18
|
-
}
|
package/dist/index.d.ts
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -257,15 +257,15 @@ export declare const AssetSchema: zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
|
257
257
|
height: zod.ZodOptional<zod.ZodNumber>;
|
|
258
258
|
position: zod.ZodOptional<zod.ZodEnum<["top", "topRight", "right", "bottomRight", "bottom", "bottomLeft", "left", "topLeft", "center"]>>;
|
|
259
259
|
}, "strip", zod.ZodTypeAny, {
|
|
260
|
-
html: string;
|
|
261
260
|
type: "html";
|
|
261
|
+
html: string;
|
|
262
262
|
css: string;
|
|
263
263
|
width?: number | undefined;
|
|
264
264
|
height?: number | undefined;
|
|
265
265
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
266
266
|
}, {
|
|
267
|
-
html: string;
|
|
268
267
|
type: "html";
|
|
268
|
+
html: string;
|
|
269
269
|
css: string;
|
|
270
270
|
width?: number | undefined;
|
|
271
271
|
height?: number | undefined;
|
|
@@ -290,8 +290,8 @@ export declare const AssetSchema: zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
|
290
290
|
left?: number | undefined;
|
|
291
291
|
}>>;
|
|
292
292
|
}, "strip", zod.ZodTypeAny, {
|
|
293
|
-
src: string;
|
|
294
293
|
type: "image";
|
|
294
|
+
src: string;
|
|
295
295
|
crop?: {
|
|
296
296
|
top?: number | undefined;
|
|
297
297
|
right?: number | undefined;
|
|
@@ -299,8 +299,8 @@ export declare const AssetSchema: zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
|
299
299
|
left?: number | undefined;
|
|
300
300
|
} | undefined;
|
|
301
301
|
}, {
|
|
302
|
-
src: string;
|
|
303
302
|
type: "image";
|
|
303
|
+
src: string;
|
|
304
304
|
crop?: {
|
|
305
305
|
top?: number | undefined;
|
|
306
306
|
right?: number | undefined;
|
|
@@ -338,29 +338,29 @@ export declare const AssetSchema: zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
|
338
338
|
from: zod.ZodNumber;
|
|
339
339
|
to: zod.ZodNumber;
|
|
340
340
|
}>, "strip", zod.ZodTypeAny, {
|
|
341
|
-
length: number;
|
|
342
341
|
from: number;
|
|
343
342
|
to: number;
|
|
344
343
|
start: number;
|
|
344
|
+
length: number;
|
|
345
345
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
346
346
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
347
347
|
}, {
|
|
348
|
-
length: number;
|
|
349
348
|
from: number;
|
|
350
349
|
to: number;
|
|
351
350
|
start: number;
|
|
351
|
+
length: number;
|
|
352
352
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
353
353
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
354
354
|
}>, "many">, zod.ZodNumber]>>;
|
|
355
355
|
}, "strip", zod.ZodTypeAny, {
|
|
356
|
-
src: string;
|
|
357
356
|
type: "video";
|
|
357
|
+
src: string;
|
|
358
358
|
trim?: number | undefined;
|
|
359
359
|
volume?: number | {
|
|
360
|
-
length: number;
|
|
361
360
|
from: number;
|
|
362
361
|
to: number;
|
|
363
362
|
start: number;
|
|
363
|
+
length: number;
|
|
364
364
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
365
365
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
366
366
|
}[] | undefined;
|
|
@@ -371,14 +371,14 @@ export declare const AssetSchema: zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
|
371
371
|
left?: number | undefined;
|
|
372
372
|
} | undefined;
|
|
373
373
|
}, {
|
|
374
|
-
src: string;
|
|
375
374
|
type: "video";
|
|
375
|
+
src: string;
|
|
376
376
|
trim?: number | undefined;
|
|
377
377
|
volume?: number | {
|
|
378
|
-
length: number;
|
|
379
378
|
from: number;
|
|
380
379
|
to: number;
|
|
381
380
|
start: number;
|
|
381
|
+
length: number;
|
|
382
382
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
383
383
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
384
384
|
}[] | undefined;
|
|
@@ -392,11 +392,11 @@ export declare const AssetSchema: zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
|
392
392
|
type: zod.ZodLiteral<"luma">;
|
|
393
393
|
src: zod.ZodString;
|
|
394
394
|
}, "strip", zod.ZodTypeAny, {
|
|
395
|
-
src: string;
|
|
396
395
|
type: "luma";
|
|
397
|
-
}, {
|
|
398
396
|
src: string;
|
|
397
|
+
}, {
|
|
399
398
|
type: "luma";
|
|
399
|
+
src: string;
|
|
400
400
|
}>, zod.ZodObject<{
|
|
401
401
|
type: zod.ZodLiteral<"audio">;
|
|
402
402
|
src: zod.ZodString;
|
|
@@ -412,66 +412,66 @@ export declare const AssetSchema: zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
|
412
412
|
from: zod.ZodNumber;
|
|
413
413
|
to: zod.ZodNumber;
|
|
414
414
|
}>, "strip", zod.ZodTypeAny, {
|
|
415
|
-
length: number;
|
|
416
415
|
from: number;
|
|
417
416
|
to: number;
|
|
418
417
|
start: number;
|
|
418
|
+
length: number;
|
|
419
419
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
420
420
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
421
421
|
}, {
|
|
422
|
-
length: number;
|
|
423
422
|
from: number;
|
|
424
423
|
to: number;
|
|
425
424
|
start: number;
|
|
425
|
+
length: number;
|
|
426
426
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
427
427
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
428
428
|
}>, "many">, zod.ZodNumber]>>;
|
|
429
429
|
}, "strip", zod.ZodTypeAny, {
|
|
430
|
-
src: string;
|
|
431
430
|
type: "audio";
|
|
431
|
+
src: string;
|
|
432
432
|
trim?: number | undefined;
|
|
433
433
|
volume?: number | {
|
|
434
|
-
length: number;
|
|
435
434
|
from: number;
|
|
436
435
|
to: number;
|
|
437
436
|
start: number;
|
|
437
|
+
length: number;
|
|
438
438
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
439
439
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
440
440
|
}[] | undefined;
|
|
441
441
|
}, {
|
|
442
|
-
src: string;
|
|
443
442
|
type: "audio";
|
|
443
|
+
src: string;
|
|
444
444
|
trim?: number | undefined;
|
|
445
445
|
volume?: number | {
|
|
446
|
-
length: number;
|
|
447
446
|
from: number;
|
|
448
447
|
to: number;
|
|
449
448
|
start: number;
|
|
449
|
+
length: number;
|
|
450
450
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
451
451
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
452
452
|
}[] | undefined;
|
|
453
453
|
}>]>, {
|
|
454
|
-
src: string;
|
|
455
454
|
type: "audio";
|
|
455
|
+
src: string;
|
|
456
456
|
trim?: number | undefined;
|
|
457
457
|
volume?: number | {
|
|
458
|
-
length: number;
|
|
459
458
|
from: number;
|
|
460
459
|
to: number;
|
|
461
460
|
start: number;
|
|
461
|
+
length: number;
|
|
462
462
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
463
463
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
464
464
|
}[] | undefined;
|
|
465
465
|
} | {
|
|
466
|
-
html: string;
|
|
467
466
|
type: "html";
|
|
467
|
+
html: string;
|
|
468
468
|
css: string;
|
|
469
469
|
width?: number | undefined;
|
|
470
470
|
height?: number | undefined;
|
|
471
471
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
472
472
|
} | {
|
|
473
|
-
src: string;
|
|
474
473
|
type: "image";
|
|
474
|
+
src: string;
|
|
475
475
|
crop?: {
|
|
476
476
|
top?: number | undefined;
|
|
477
477
|
right?: number | undefined;
|
|
@@ -479,8 +479,8 @@ export declare const AssetSchema: zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
|
479
479
|
left?: number | undefined;
|
|
480
480
|
} | undefined;
|
|
481
481
|
} | {
|
|
482
|
-
src: string;
|
|
483
482
|
type: "luma";
|
|
483
|
+
src: string;
|
|
484
484
|
} | {
|
|
485
485
|
type: "shape";
|
|
486
486
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -530,14 +530,14 @@ export declare const AssetSchema: zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
|
530
530
|
opacity: number;
|
|
531
531
|
} | undefined;
|
|
532
532
|
} | {
|
|
533
|
-
src: string;
|
|
534
533
|
type: "video";
|
|
534
|
+
src: string;
|
|
535
535
|
trim?: number | undefined;
|
|
536
536
|
volume?: number | {
|
|
537
|
-
length: number;
|
|
538
537
|
from: number;
|
|
539
538
|
to: number;
|
|
540
539
|
start: number;
|
|
540
|
+
length: number;
|
|
541
541
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
542
542
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
543
543
|
}[] | undefined;
|
|
@@ -548,27 +548,27 @@ export declare const AssetSchema: zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
|
548
548
|
left?: number | undefined;
|
|
549
549
|
} | undefined;
|
|
550
550
|
}, {
|
|
551
|
-
src: string;
|
|
552
551
|
type: "audio";
|
|
552
|
+
src: string;
|
|
553
553
|
trim?: number | undefined;
|
|
554
554
|
volume?: number | {
|
|
555
|
-
length: number;
|
|
556
555
|
from: number;
|
|
557
556
|
to: number;
|
|
558
557
|
start: number;
|
|
558
|
+
length: number;
|
|
559
559
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
560
560
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
561
561
|
}[] | undefined;
|
|
562
562
|
} | {
|
|
563
|
-
html: string;
|
|
564
563
|
type: "html";
|
|
564
|
+
html: string;
|
|
565
565
|
css: string;
|
|
566
566
|
width?: number | undefined;
|
|
567
567
|
height?: number | undefined;
|
|
568
568
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
569
569
|
} | {
|
|
570
|
-
src: string;
|
|
571
570
|
type: "image";
|
|
571
|
+
src: string;
|
|
572
572
|
crop?: {
|
|
573
573
|
top?: number | undefined;
|
|
574
574
|
right?: number | undefined;
|
|
@@ -576,8 +576,8 @@ export declare const AssetSchema: zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
|
576
576
|
left?: number | undefined;
|
|
577
577
|
} | undefined;
|
|
578
578
|
} | {
|
|
579
|
-
src: string;
|
|
580
579
|
type: "luma";
|
|
580
|
+
src: string;
|
|
581
581
|
} | {
|
|
582
582
|
type: "shape";
|
|
583
583
|
shape: "rectangle" | "circle" | "line";
|
|
@@ -627,14 +627,14 @@ export declare const AssetSchema: zod.ZodEffects<zod.ZodUnion<[zod.ZodObject<{
|
|
|
627
627
|
opacity: number;
|
|
628
628
|
} | undefined;
|
|
629
629
|
} | {
|
|
630
|
-
src: string;
|
|
631
630
|
type: "video";
|
|
631
|
+
src: string;
|
|
632
632
|
trim?: number | undefined;
|
|
633
633
|
volume?: number | {
|
|
634
|
-
length: number;
|
|
635
634
|
from: number;
|
|
636
635
|
to: number;
|
|
637
636
|
start: number;
|
|
637
|
+
length: number;
|
|
638
638
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
639
639
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
640
640
|
}[] | undefined;
|
|
@@ -11,17 +11,17 @@ export declare const AudioAssetVolumeSchema: zod.ZodUnion<[zod.ZodArray<zod.ZodO
|
|
|
11
11
|
from: zod.ZodNumber;
|
|
12
12
|
to: zod.ZodNumber;
|
|
13
13
|
}>, "strip", zod.ZodTypeAny, {
|
|
14
|
-
length: number;
|
|
15
14
|
from: number;
|
|
16
15
|
to: number;
|
|
17
16
|
start: number;
|
|
17
|
+
length: number;
|
|
18
18
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
19
19
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
20
20
|
}, {
|
|
21
|
-
length: number;
|
|
22
21
|
from: number;
|
|
23
22
|
to: number;
|
|
24
23
|
start: number;
|
|
24
|
+
length: number;
|
|
25
25
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
26
26
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
27
27
|
}>, "many">, zod.ZodNumber]>;
|
|
@@ -40,41 +40,41 @@ export declare const AudioAssetSchema: zod.ZodObject<{
|
|
|
40
40
|
from: zod.ZodNumber;
|
|
41
41
|
to: zod.ZodNumber;
|
|
42
42
|
}>, "strip", zod.ZodTypeAny, {
|
|
43
|
-
length: number;
|
|
44
43
|
from: number;
|
|
45
44
|
to: number;
|
|
46
45
|
start: number;
|
|
46
|
+
length: number;
|
|
47
47
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
48
48
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
49
49
|
}, {
|
|
50
|
-
length: number;
|
|
51
50
|
from: number;
|
|
52
51
|
to: number;
|
|
53
52
|
start: number;
|
|
53
|
+
length: number;
|
|
54
54
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
55
55
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
56
56
|
}>, "many">, zod.ZodNumber]>>;
|
|
57
57
|
}, "strip", zod.ZodTypeAny, {
|
|
58
|
-
src: string;
|
|
59
58
|
type: "audio";
|
|
59
|
+
src: string;
|
|
60
60
|
trim?: number | undefined;
|
|
61
61
|
volume?: number | {
|
|
62
|
-
length: number;
|
|
63
62
|
from: number;
|
|
64
63
|
to: number;
|
|
65
64
|
start: number;
|
|
65
|
+
length: number;
|
|
66
66
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
67
67
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
68
68
|
}[] | undefined;
|
|
69
69
|
}, {
|
|
70
|
-
src: string;
|
|
71
70
|
type: "audio";
|
|
71
|
+
src: string;
|
|
72
72
|
trim?: number | undefined;
|
|
73
73
|
volume?: number | {
|
|
74
|
-
length: number;
|
|
75
74
|
from: number;
|
|
76
75
|
to: number;
|
|
77
76
|
start: number;
|
|
77
|
+
length: number;
|
|
78
78
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
79
79
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
80
80
|
}[] | undefined;
|
|
@@ -8,15 +8,15 @@ export declare const HtmlAssetSchema: zod.ZodObject<{
|
|
|
8
8
|
height: zod.ZodOptional<zod.ZodNumber>;
|
|
9
9
|
position: zod.ZodOptional<zod.ZodEnum<["top", "topRight", "right", "bottomRight", "bottom", "bottomLeft", "left", "topLeft", "center"]>>;
|
|
10
10
|
}, "strip", zod.ZodTypeAny, {
|
|
11
|
-
html: string;
|
|
12
11
|
type: "html";
|
|
12
|
+
html: string;
|
|
13
13
|
css: string;
|
|
14
14
|
width?: number | undefined;
|
|
15
15
|
height?: number | undefined;
|
|
16
16
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
17
17
|
}, {
|
|
18
|
-
html: string;
|
|
19
18
|
type: "html";
|
|
19
|
+
html: string;
|
|
20
20
|
css: string;
|
|
21
21
|
width?: number | undefined;
|
|
22
22
|
height?: number | undefined;
|
|
@@ -36,8 +36,8 @@ export declare const ImageAssetSchema: zod.ZodObject<{
|
|
|
36
36
|
left?: number | undefined;
|
|
37
37
|
}>>;
|
|
38
38
|
}, "strip", zod.ZodTypeAny, {
|
|
39
|
-
src: string;
|
|
40
39
|
type: "image";
|
|
40
|
+
src: string;
|
|
41
41
|
crop?: {
|
|
42
42
|
top?: number | undefined;
|
|
43
43
|
right?: number | undefined;
|
|
@@ -45,8 +45,8 @@ export declare const ImageAssetSchema: zod.ZodObject<{
|
|
|
45
45
|
left?: number | undefined;
|
|
46
46
|
} | undefined;
|
|
47
47
|
}, {
|
|
48
|
-
src: string;
|
|
49
48
|
type: "image";
|
|
49
|
+
src: string;
|
|
50
50
|
crop?: {
|
|
51
51
|
top?: number | undefined;
|
|
52
52
|
right?: number | undefined;
|
|
@@ -9,17 +9,17 @@ export declare const KeyframeSchema: zod.ZodObject<{
|
|
|
9
9
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
10
10
|
easing: zod.ZodOptional<zod.ZodEnum<["ease", "easeIn", "easeOut", "easeInOut", "easeInQuad", "easeInCubic", "easeInQuart", "easeInQuint", "easeInSine", "easeInExpo", "easeInCirc", "easeInBack", "easeOutQuad", "easeOutCubic", "easeOutQuart", "easeOutQuint", "easeOutSine", "easeOutExpo", "easeOutCirc", "easeOutBack", "easeInOutQuad", "easeInOutCubic", "easeInOutQuart", "easeInOutQuint", "easeInOutSine", "easeInOutExpo", "easeInOutCirc", "easeInOutBack"]>>;
|
|
11
11
|
}, "strip", zod.ZodTypeAny, {
|
|
12
|
-
length: number;
|
|
13
12
|
from: number;
|
|
14
13
|
to: number;
|
|
15
14
|
start: number;
|
|
15
|
+
length: number;
|
|
16
16
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
17
17
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
18
18
|
}, {
|
|
19
|
-
length: number;
|
|
20
19
|
from: number;
|
|
21
20
|
to: number;
|
|
22
21
|
start: number;
|
|
22
|
+
length: number;
|
|
23
23
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
24
24
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
25
25
|
}>;
|
|
@@ -4,10 +4,10 @@ export declare const LumaAssetSchema: zod.ZodObject<{
|
|
|
4
4
|
type: zod.ZodLiteral<"luma">;
|
|
5
5
|
src: zod.ZodString;
|
|
6
6
|
}, "strip", zod.ZodTypeAny, {
|
|
7
|
-
src: string;
|
|
8
7
|
type: "luma";
|
|
9
|
-
}, {
|
|
10
8
|
src: string;
|
|
9
|
+
}, {
|
|
11
10
|
type: "luma";
|
|
11
|
+
src: string;
|
|
12
12
|
}>;
|
|
13
13
|
export type LumaAsset = zod.infer<typeof LumaAssetSchema>;
|
|
File without changes
|
|
File without changes
|
|
@@ -27,17 +27,17 @@ export declare const VideoAssetVolumeSchema: zod.ZodUnion<[zod.ZodArray<zod.ZodO
|
|
|
27
27
|
from: zod.ZodNumber;
|
|
28
28
|
to: zod.ZodNumber;
|
|
29
29
|
}>, "strip", zod.ZodTypeAny, {
|
|
30
|
-
length: number;
|
|
31
30
|
from: number;
|
|
32
31
|
to: number;
|
|
33
32
|
start: number;
|
|
33
|
+
length: number;
|
|
34
34
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
35
35
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
36
36
|
}, {
|
|
37
|
-
length: number;
|
|
38
37
|
from: number;
|
|
39
38
|
to: number;
|
|
40
39
|
start: number;
|
|
40
|
+
length: number;
|
|
41
41
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
42
42
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
43
43
|
}>, "many">, zod.ZodNumber]>;
|
|
@@ -72,29 +72,29 @@ export declare const VideoAssetSchema: zod.ZodObject<{
|
|
|
72
72
|
from: zod.ZodNumber;
|
|
73
73
|
to: zod.ZodNumber;
|
|
74
74
|
}>, "strip", zod.ZodTypeAny, {
|
|
75
|
-
length: number;
|
|
76
75
|
from: number;
|
|
77
76
|
to: number;
|
|
78
77
|
start: number;
|
|
78
|
+
length: number;
|
|
79
79
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
80
80
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
81
81
|
}, {
|
|
82
|
-
length: number;
|
|
83
82
|
from: number;
|
|
84
83
|
to: number;
|
|
85
84
|
start: number;
|
|
85
|
+
length: number;
|
|
86
86
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
87
87
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
88
88
|
}>, "many">, zod.ZodNumber]>>;
|
|
89
89
|
}, "strip", zod.ZodTypeAny, {
|
|
90
|
-
src: string;
|
|
91
90
|
type: "video";
|
|
91
|
+
src: string;
|
|
92
92
|
trim?: number | undefined;
|
|
93
93
|
volume?: number | {
|
|
94
|
-
length: number;
|
|
95
94
|
from: number;
|
|
96
95
|
to: number;
|
|
97
96
|
start: number;
|
|
97
|
+
length: number;
|
|
98
98
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
99
99
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
100
100
|
}[] | undefined;
|
|
@@ -105,14 +105,14 @@ export declare const VideoAssetSchema: zod.ZodObject<{
|
|
|
105
105
|
left?: number | undefined;
|
|
106
106
|
} | undefined;
|
|
107
107
|
}, {
|
|
108
|
-
src: string;
|
|
109
108
|
type: "video";
|
|
109
|
+
src: string;
|
|
110
110
|
trim?: number | undefined;
|
|
111
111
|
volume?: number | {
|
|
112
|
-
length: number;
|
|
113
112
|
from: number;
|
|
114
113
|
to: number;
|
|
115
114
|
start: number;
|
|
115
|
+
length: number;
|
|
116
116
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
117
117
|
easing?: "ease" | "easeIn" | "easeOut" | "easeInOut" | "easeInQuad" | "easeInCubic" | "easeInQuart" | "easeInQuint" | "easeInSine" | "easeInExpo" | "easeInCirc" | "easeInBack" | "easeOutQuad" | "easeOutCubic" | "easeOutQuart" | "easeOutQuint" | "easeOutSine" | "easeOutExpo" | "easeOutCirc" | "easeOutBack" | "easeInOutQuad" | "easeInOutCubic" | "easeInOutQuart" | "easeInOutQuint" | "easeInOutSine" | "easeInOutExpo" | "easeInOutCirc" | "easeInOutBack" | undefined;
|
|
118
118
|
}[] | undefined;
|
|
File without changes
|
|
File without changes
|