@shotstack/shotstack-studio 1.1.2 → 1.2.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/dist/core/loaders/asset-loader.d.ts +9 -2
- package/dist/core/schemas/asset.d.ts +10 -14
- package/dist/core/schemas/audio-asset.d.ts +6 -10
- package/dist/core/schemas/clip.d.ts +29 -43
- package/dist/core/schemas/edit.d.ts +87 -115
- package/dist/core/schemas/html-asset.d.ts +2 -2
- package/dist/core/schemas/track.d.ts +33 -47
- package/dist/core/schemas/video-asset.d.ts +6 -10
- package/dist/core/shotstack-canvas.d.ts +1 -0
- package/dist/shotstack-studio.es.js +649 -547
- package/dist/shotstack-studio.umd.js +6 -6
- package/package.json +1 -1
- package/readme.md +2 -0
|
@@ -277,15 +277,15 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
277
277
|
height: zod.ZodOptional<zod.ZodNumber>;
|
|
278
278
|
position: zod.ZodOptional<zod.ZodEnum<["top", "topRight", "right", "bottomRight", "bottom", "bottomLeft", "left", "topLeft", "center"]>>;
|
|
279
279
|
}, "strip", zod.ZodTypeAny, {
|
|
280
|
-
type: "html";
|
|
281
280
|
html: string;
|
|
281
|
+
type: "html";
|
|
282
282
|
css: string;
|
|
283
283
|
width?: number | undefined;
|
|
284
284
|
height?: number | undefined;
|
|
285
285
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
286
286
|
}, {
|
|
287
|
-
type: "html";
|
|
288
287
|
html: string;
|
|
288
|
+
type: "html";
|
|
289
289
|
css: string;
|
|
290
290
|
width?: number | undefined;
|
|
291
291
|
height?: number | undefined;
|
|
@@ -347,17 +347,15 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
347
347
|
bottom?: number | undefined;
|
|
348
348
|
left?: number | undefined;
|
|
349
349
|
}>>;
|
|
350
|
-
volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<
|
|
351
|
-
from: zod.ZodNumber;
|
|
352
|
-
to: zod.ZodNumber;
|
|
350
|
+
volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
353
351
|
start: zod.ZodNumber;
|
|
354
352
|
length: zod.ZodNumber;
|
|
355
353
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
356
354
|
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"]>>;
|
|
357
|
-
}
|
|
355
|
+
} & {
|
|
358
356
|
from: zod.ZodNumber;
|
|
359
357
|
to: zod.ZodNumber;
|
|
360
|
-
}
|
|
358
|
+
}, "strip", zod.ZodTypeAny, {
|
|
361
359
|
length: number;
|
|
362
360
|
from: number;
|
|
363
361
|
to: number;
|
|
@@ -421,17 +419,15 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
421
419
|
type: zod.ZodLiteral<"audio">;
|
|
422
420
|
src: zod.ZodString;
|
|
423
421
|
trim: zod.ZodOptional<zod.ZodNumber>;
|
|
424
|
-
volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<
|
|
425
|
-
from: zod.ZodNumber;
|
|
426
|
-
to: zod.ZodNumber;
|
|
422
|
+
volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
427
423
|
start: zod.ZodNumber;
|
|
428
424
|
length: zod.ZodNumber;
|
|
429
425
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
430
426
|
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"]>>;
|
|
431
|
-
}
|
|
427
|
+
} & {
|
|
432
428
|
from: zod.ZodNumber;
|
|
433
429
|
to: zod.ZodNumber;
|
|
434
|
-
}
|
|
430
|
+
}, "strip", zod.ZodTypeAny, {
|
|
435
431
|
length: number;
|
|
436
432
|
from: number;
|
|
437
433
|
to: number;
|
|
@@ -483,8 +479,8 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
483
479
|
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;
|
|
484
480
|
}[] | undefined;
|
|
485
481
|
} | {
|
|
486
|
-
type: "html";
|
|
487
482
|
html: string;
|
|
483
|
+
type: "html";
|
|
488
484
|
css: string;
|
|
489
485
|
width?: number | undefined;
|
|
490
486
|
height?: number | undefined;
|
|
@@ -580,8 +576,8 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
580
576
|
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;
|
|
581
577
|
}[] | undefined;
|
|
582
578
|
} | {
|
|
583
|
-
type: "html";
|
|
584
579
|
html: string;
|
|
580
|
+
type: "html";
|
|
585
581
|
css: string;
|
|
586
582
|
width?: number | undefined;
|
|
587
583
|
height?: number | undefined;
|
|
@@ -670,17 +666,15 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
670
666
|
position: zod.ZodOptional<zod.ZodDefault<zod.ZodEnum<["topLeft", "top", "topRight", "left", "center", "right", "bottomLeft", "bottom", "bottomRight"]>>>;
|
|
671
667
|
fit: zod.ZodOptional<zod.ZodDefault<zod.ZodEnum<["crop", "cover", "contain", "none"]>>>;
|
|
672
668
|
offset: zod.ZodOptional<zod.ZodDefault<zod.ZodObject<{
|
|
673
|
-
x: zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<
|
|
674
|
-
from: zod.ZodNumber;
|
|
675
|
-
to: zod.ZodNumber;
|
|
669
|
+
x: zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
676
670
|
start: zod.ZodNumber;
|
|
677
671
|
length: zod.ZodNumber;
|
|
678
672
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
679
673
|
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"]>>;
|
|
680
|
-
}
|
|
674
|
+
} & {
|
|
681
675
|
from: zod.ZodDefault<zod.ZodNumber>;
|
|
682
676
|
to: zod.ZodDefault<zod.ZodNumber>;
|
|
683
|
-
}
|
|
677
|
+
}, "strip", zod.ZodTypeAny, {
|
|
684
678
|
length: number;
|
|
685
679
|
from: number;
|
|
686
680
|
to: number;
|
|
@@ -695,17 +689,15 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
695
689
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
696
690
|
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;
|
|
697
691
|
}>, "many">, zod.ZodDefault<zod.ZodNumber>]>>;
|
|
698
|
-
y: zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<
|
|
699
|
-
from: zod.ZodNumber;
|
|
700
|
-
to: zod.ZodNumber;
|
|
692
|
+
y: zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
701
693
|
start: zod.ZodNumber;
|
|
702
694
|
length: zod.ZodNumber;
|
|
703
695
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
704
696
|
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"]>>;
|
|
705
|
-
}
|
|
697
|
+
} & {
|
|
706
698
|
from: zod.ZodDefault<zod.ZodNumber>;
|
|
707
699
|
to: zod.ZodDefault<zod.ZodNumber>;
|
|
708
|
-
}
|
|
700
|
+
}, "strip", zod.ZodTypeAny, {
|
|
709
701
|
length: number;
|
|
710
702
|
from: number;
|
|
711
703
|
to: number;
|
|
@@ -755,17 +747,15 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
755
747
|
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;
|
|
756
748
|
}[] | undefined;
|
|
757
749
|
}>>>;
|
|
758
|
-
opacity: zod.ZodOptional<zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<
|
|
759
|
-
from: zod.ZodNumber;
|
|
760
|
-
to: zod.ZodNumber;
|
|
750
|
+
opacity: zod.ZodOptional<zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
761
751
|
start: zod.ZodNumber;
|
|
762
752
|
length: zod.ZodNumber;
|
|
763
753
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
764
754
|
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"]>>;
|
|
765
|
-
}
|
|
755
|
+
} & {
|
|
766
756
|
from: zod.ZodNumber;
|
|
767
757
|
to: zod.ZodNumber;
|
|
768
|
-
}
|
|
758
|
+
}, "strip", zod.ZodTypeAny, {
|
|
769
759
|
length: number;
|
|
770
760
|
from: number;
|
|
771
761
|
to: number;
|
|
@@ -780,17 +770,15 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
780
770
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
781
771
|
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;
|
|
782
772
|
}>, "many">, zod.ZodNumber]>>>;
|
|
783
|
-
scale: zod.ZodOptional<zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<
|
|
784
|
-
from: zod.ZodNumber;
|
|
785
|
-
to: zod.ZodNumber;
|
|
773
|
+
scale: zod.ZodOptional<zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
786
774
|
start: zod.ZodNumber;
|
|
787
775
|
length: zod.ZodNumber;
|
|
788
776
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
789
777
|
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"]>>;
|
|
790
|
-
}
|
|
778
|
+
} & {
|
|
791
779
|
from: zod.ZodNumber;
|
|
792
780
|
to: zod.ZodNumber;
|
|
793
|
-
}
|
|
781
|
+
}, "strip", zod.ZodTypeAny, {
|
|
794
782
|
length: number;
|
|
795
783
|
from: number;
|
|
796
784
|
to: number;
|
|
@@ -807,17 +795,15 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
807
795
|
}>, "many">, zod.ZodNumber]>>>;
|
|
808
796
|
transform: zod.ZodOptional<zod.ZodDefault<zod.ZodObject<{
|
|
809
797
|
rotate: zod.ZodDefault<zod.ZodObject<{
|
|
810
|
-
angle: zod.ZodUnion<[zod.ZodArray<zod.ZodObject<
|
|
811
|
-
from: zod.ZodNumber;
|
|
812
|
-
to: zod.ZodNumber;
|
|
798
|
+
angle: zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
813
799
|
start: zod.ZodNumber;
|
|
814
800
|
length: zod.ZodNumber;
|
|
815
801
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
816
802
|
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"]>>;
|
|
817
|
-
}
|
|
803
|
+
} & {
|
|
818
804
|
from: zod.ZodNumber;
|
|
819
805
|
to: zod.ZodNumber;
|
|
820
|
-
}
|
|
806
|
+
}, "strip", zod.ZodTypeAny, {
|
|
821
807
|
length: number;
|
|
822
808
|
from: number;
|
|
823
809
|
to: number;
|
|
@@ -901,8 +887,8 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
901
887
|
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;
|
|
902
888
|
}[] | undefined;
|
|
903
889
|
} | {
|
|
904
|
-
type: "html";
|
|
905
890
|
html: string;
|
|
891
|
+
type: "html";
|
|
906
892
|
css: string;
|
|
907
893
|
width?: number | undefined;
|
|
908
894
|
height?: number | undefined;
|
|
@@ -995,7 +981,7 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
995
981
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
996
982
|
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;
|
|
997
983
|
}[] | undefined;
|
|
998
|
-
fit?: "
|
|
984
|
+
fit?: "none" | "crop" | "cover" | "contain" | undefined;
|
|
999
985
|
offset?: {
|
|
1000
986
|
x: number | {
|
|
1001
987
|
length: number;
|
|
@@ -1055,8 +1041,8 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1055
1041
|
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;
|
|
1056
1042
|
}[] | undefined;
|
|
1057
1043
|
} | {
|
|
1058
|
-
type: "html";
|
|
1059
1044
|
html: string;
|
|
1045
|
+
type: "html";
|
|
1060
1046
|
css: string;
|
|
1061
1047
|
width?: number | undefined;
|
|
1062
1048
|
height?: number | undefined;
|
|
@@ -1149,7 +1135,7 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1149
1135
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1150
1136
|
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;
|
|
1151
1137
|
}[] | undefined;
|
|
1152
|
-
fit?: "
|
|
1138
|
+
fit?: "none" | "crop" | "cover" | "contain" | undefined;
|
|
1153
1139
|
offset?: {
|
|
1154
1140
|
x?: number | {
|
|
1155
1141
|
length: number;
|
|
@@ -1211,8 +1197,8 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1211
1197
|
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;
|
|
1212
1198
|
}[] | undefined;
|
|
1213
1199
|
} | {
|
|
1214
|
-
type: "html";
|
|
1215
1200
|
html: string;
|
|
1201
|
+
type: "html";
|
|
1216
1202
|
css: string;
|
|
1217
1203
|
width?: number | undefined;
|
|
1218
1204
|
height?: number | undefined;
|
|
@@ -1305,7 +1291,7 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1305
1291
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1306
1292
|
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;
|
|
1307
1293
|
}[] | undefined;
|
|
1308
|
-
fit?: "
|
|
1294
|
+
fit?: "none" | "crop" | "cover" | "contain" | undefined;
|
|
1309
1295
|
offset?: {
|
|
1310
1296
|
x: number | {
|
|
1311
1297
|
length: number;
|
|
@@ -1367,8 +1353,8 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1367
1353
|
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;
|
|
1368
1354
|
}[] | undefined;
|
|
1369
1355
|
} | {
|
|
1370
|
-
type: "html";
|
|
1371
1356
|
html: string;
|
|
1357
|
+
type: "html";
|
|
1372
1358
|
css: string;
|
|
1373
1359
|
width?: number | undefined;
|
|
1374
1360
|
height?: number | undefined;
|
|
@@ -1461,7 +1447,7 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1461
1447
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1462
1448
|
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;
|
|
1463
1449
|
}[] | undefined;
|
|
1464
|
-
fit?: "
|
|
1450
|
+
fit?: "none" | "crop" | "cover" | "contain" | undefined;
|
|
1465
1451
|
offset?: {
|
|
1466
1452
|
x?: number | {
|
|
1467
1453
|
length: number;
|
|
@@ -1525,8 +1511,8 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1525
1511
|
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;
|
|
1526
1512
|
}[] | undefined;
|
|
1527
1513
|
} | {
|
|
1528
|
-
type: "html";
|
|
1529
1514
|
html: string;
|
|
1515
|
+
type: "html";
|
|
1530
1516
|
css: string;
|
|
1531
1517
|
width?: number | undefined;
|
|
1532
1518
|
height?: number | undefined;
|
|
@@ -1619,7 +1605,7 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1619
1605
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1620
1606
|
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;
|
|
1621
1607
|
}[] | undefined;
|
|
1622
|
-
fit?: "
|
|
1608
|
+
fit?: "none" | "crop" | "cover" | "contain" | undefined;
|
|
1623
1609
|
offset?: {
|
|
1624
1610
|
x: number | {
|
|
1625
1611
|
length: number;
|
|
@@ -1687,8 +1673,8 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1687
1673
|
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;
|
|
1688
1674
|
}[] | undefined;
|
|
1689
1675
|
} | {
|
|
1690
|
-
type: "html";
|
|
1691
1676
|
html: string;
|
|
1677
|
+
type: "html";
|
|
1692
1678
|
css: string;
|
|
1693
1679
|
width?: number | undefined;
|
|
1694
1680
|
height?: number | undefined;
|
|
@@ -1781,7 +1767,7 @@ export declare const TimelineSchema: zod.ZodObject<{
|
|
|
1781
1767
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
1782
1768
|
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;
|
|
1783
1769
|
}[] | undefined;
|
|
1784
|
-
fit?: "
|
|
1770
|
+
fit?: "none" | "crop" | "cover" | "contain" | undefined;
|
|
1785
1771
|
offset?: {
|
|
1786
1772
|
x?: number | {
|
|
1787
1773
|
length: number;
|
|
@@ -2130,15 +2116,15 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2130
2116
|
height: zod.ZodOptional<zod.ZodNumber>;
|
|
2131
2117
|
position: zod.ZodOptional<zod.ZodEnum<["top", "topRight", "right", "bottomRight", "bottom", "bottomLeft", "left", "topLeft", "center"]>>;
|
|
2132
2118
|
}, "strip", zod.ZodTypeAny, {
|
|
2133
|
-
type: "html";
|
|
2134
2119
|
html: string;
|
|
2120
|
+
type: "html";
|
|
2135
2121
|
css: string;
|
|
2136
2122
|
width?: number | undefined;
|
|
2137
2123
|
height?: number | undefined;
|
|
2138
2124
|
position?: "top" | "topRight" | "right" | "bottomRight" | "bottom" | "bottomLeft" | "left" | "topLeft" | "center" | undefined;
|
|
2139
2125
|
}, {
|
|
2140
|
-
type: "html";
|
|
2141
2126
|
html: string;
|
|
2127
|
+
type: "html";
|
|
2142
2128
|
css: string;
|
|
2143
2129
|
width?: number | undefined;
|
|
2144
2130
|
height?: number | undefined;
|
|
@@ -2200,17 +2186,15 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2200
2186
|
bottom?: number | undefined;
|
|
2201
2187
|
left?: number | undefined;
|
|
2202
2188
|
}>>;
|
|
2203
|
-
volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<
|
|
2204
|
-
from: zod.ZodNumber;
|
|
2205
|
-
to: zod.ZodNumber;
|
|
2189
|
+
volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
2206
2190
|
start: zod.ZodNumber;
|
|
2207
2191
|
length: zod.ZodNumber;
|
|
2208
2192
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
2209
2193
|
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"]>>;
|
|
2210
|
-
}
|
|
2194
|
+
} & {
|
|
2211
2195
|
from: zod.ZodNumber;
|
|
2212
2196
|
to: zod.ZodNumber;
|
|
2213
|
-
}
|
|
2197
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2214
2198
|
length: number;
|
|
2215
2199
|
from: number;
|
|
2216
2200
|
to: number;
|
|
@@ -2274,17 +2258,15 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2274
2258
|
type: zod.ZodLiteral<"audio">;
|
|
2275
2259
|
src: zod.ZodString;
|
|
2276
2260
|
trim: zod.ZodOptional<zod.ZodNumber>;
|
|
2277
|
-
volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<
|
|
2278
|
-
from: zod.ZodNumber;
|
|
2279
|
-
to: zod.ZodNumber;
|
|
2261
|
+
volume: zod.ZodOptional<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
2280
2262
|
start: zod.ZodNumber;
|
|
2281
2263
|
length: zod.ZodNumber;
|
|
2282
2264
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
2283
2265
|
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"]>>;
|
|
2284
|
-
}
|
|
2266
|
+
} & {
|
|
2285
2267
|
from: zod.ZodNumber;
|
|
2286
2268
|
to: zod.ZodNumber;
|
|
2287
|
-
}
|
|
2269
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2288
2270
|
length: number;
|
|
2289
2271
|
from: number;
|
|
2290
2272
|
to: number;
|
|
@@ -2336,8 +2318,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2336
2318
|
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;
|
|
2337
2319
|
}[] | undefined;
|
|
2338
2320
|
} | {
|
|
2339
|
-
type: "html";
|
|
2340
2321
|
html: string;
|
|
2322
|
+
type: "html";
|
|
2341
2323
|
css: string;
|
|
2342
2324
|
width?: number | undefined;
|
|
2343
2325
|
height?: number | undefined;
|
|
@@ -2433,8 +2415,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2433
2415
|
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;
|
|
2434
2416
|
}[] | undefined;
|
|
2435
2417
|
} | {
|
|
2436
|
-
type: "html";
|
|
2437
2418
|
html: string;
|
|
2419
|
+
type: "html";
|
|
2438
2420
|
css: string;
|
|
2439
2421
|
width?: number | undefined;
|
|
2440
2422
|
height?: number | undefined;
|
|
@@ -2523,17 +2505,15 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2523
2505
|
position: zod.ZodOptional<zod.ZodDefault<zod.ZodEnum<["topLeft", "top", "topRight", "left", "center", "right", "bottomLeft", "bottom", "bottomRight"]>>>;
|
|
2524
2506
|
fit: zod.ZodOptional<zod.ZodDefault<zod.ZodEnum<["crop", "cover", "contain", "none"]>>>;
|
|
2525
2507
|
offset: zod.ZodOptional<zod.ZodDefault<zod.ZodObject<{
|
|
2526
|
-
x: zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<
|
|
2527
|
-
from: zod.ZodNumber;
|
|
2528
|
-
to: zod.ZodNumber;
|
|
2508
|
+
x: zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
2529
2509
|
start: zod.ZodNumber;
|
|
2530
2510
|
length: zod.ZodNumber;
|
|
2531
2511
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
2532
2512
|
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"]>>;
|
|
2533
|
-
}
|
|
2513
|
+
} & {
|
|
2534
2514
|
from: zod.ZodDefault<zod.ZodNumber>;
|
|
2535
2515
|
to: zod.ZodDefault<zod.ZodNumber>;
|
|
2536
|
-
}
|
|
2516
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2537
2517
|
length: number;
|
|
2538
2518
|
from: number;
|
|
2539
2519
|
to: number;
|
|
@@ -2548,17 +2528,15 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2548
2528
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2549
2529
|
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;
|
|
2550
2530
|
}>, "many">, zod.ZodDefault<zod.ZodNumber>]>>;
|
|
2551
|
-
y: zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<
|
|
2552
|
-
from: zod.ZodNumber;
|
|
2553
|
-
to: zod.ZodNumber;
|
|
2531
|
+
y: zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
2554
2532
|
start: zod.ZodNumber;
|
|
2555
2533
|
length: zod.ZodNumber;
|
|
2556
2534
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
2557
2535
|
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"]>>;
|
|
2558
|
-
}
|
|
2536
|
+
} & {
|
|
2559
2537
|
from: zod.ZodDefault<zod.ZodNumber>;
|
|
2560
2538
|
to: zod.ZodDefault<zod.ZodNumber>;
|
|
2561
|
-
}
|
|
2539
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2562
2540
|
length: number;
|
|
2563
2541
|
from: number;
|
|
2564
2542
|
to: number;
|
|
@@ -2608,17 +2586,15 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2608
2586
|
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;
|
|
2609
2587
|
}[] | undefined;
|
|
2610
2588
|
}>>>;
|
|
2611
|
-
opacity: zod.ZodOptional<zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<
|
|
2612
|
-
from: zod.ZodNumber;
|
|
2613
|
-
to: zod.ZodNumber;
|
|
2589
|
+
opacity: zod.ZodOptional<zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
2614
2590
|
start: zod.ZodNumber;
|
|
2615
2591
|
length: zod.ZodNumber;
|
|
2616
2592
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
2617
2593
|
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"]>>;
|
|
2618
|
-
}
|
|
2594
|
+
} & {
|
|
2619
2595
|
from: zod.ZodNumber;
|
|
2620
2596
|
to: zod.ZodNumber;
|
|
2621
|
-
}
|
|
2597
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2622
2598
|
length: number;
|
|
2623
2599
|
from: number;
|
|
2624
2600
|
to: number;
|
|
@@ -2633,17 +2609,15 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2633
2609
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2634
2610
|
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;
|
|
2635
2611
|
}>, "many">, zod.ZodNumber]>>>;
|
|
2636
|
-
scale: zod.ZodOptional<zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<
|
|
2637
|
-
from: zod.ZodNumber;
|
|
2638
|
-
to: zod.ZodNumber;
|
|
2612
|
+
scale: zod.ZodOptional<zod.ZodDefault<zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
2639
2613
|
start: zod.ZodNumber;
|
|
2640
2614
|
length: zod.ZodNumber;
|
|
2641
2615
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
2642
2616
|
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"]>>;
|
|
2643
|
-
}
|
|
2617
|
+
} & {
|
|
2644
2618
|
from: zod.ZodNumber;
|
|
2645
2619
|
to: zod.ZodNumber;
|
|
2646
|
-
}
|
|
2620
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2647
2621
|
length: number;
|
|
2648
2622
|
from: number;
|
|
2649
2623
|
to: number;
|
|
@@ -2660,17 +2634,15 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2660
2634
|
}>, "many">, zod.ZodNumber]>>>;
|
|
2661
2635
|
transform: zod.ZodOptional<zod.ZodDefault<zod.ZodObject<{
|
|
2662
2636
|
rotate: zod.ZodDefault<zod.ZodObject<{
|
|
2663
|
-
angle: zod.ZodUnion<[zod.ZodArray<zod.ZodObject<
|
|
2664
|
-
from: zod.ZodNumber;
|
|
2665
|
-
to: zod.ZodNumber;
|
|
2637
|
+
angle: zod.ZodUnion<[zod.ZodArray<zod.ZodObject<{
|
|
2666
2638
|
start: zod.ZodNumber;
|
|
2667
2639
|
length: zod.ZodNumber;
|
|
2668
2640
|
interpolation: zod.ZodOptional<zod.ZodEnum<["linear", "bezier", "constant"]>>;
|
|
2669
2641
|
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"]>>;
|
|
2670
|
-
}
|
|
2642
|
+
} & {
|
|
2671
2643
|
from: zod.ZodNumber;
|
|
2672
2644
|
to: zod.ZodNumber;
|
|
2673
|
-
}
|
|
2645
|
+
}, "strip", zod.ZodTypeAny, {
|
|
2674
2646
|
length: number;
|
|
2675
2647
|
from: number;
|
|
2676
2648
|
to: number;
|
|
@@ -2754,8 +2726,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2754
2726
|
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;
|
|
2755
2727
|
}[] | undefined;
|
|
2756
2728
|
} | {
|
|
2757
|
-
type: "html";
|
|
2758
2729
|
html: string;
|
|
2730
|
+
type: "html";
|
|
2759
2731
|
css: string;
|
|
2760
2732
|
width?: number | undefined;
|
|
2761
2733
|
height?: number | undefined;
|
|
@@ -2848,7 +2820,7 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2848
2820
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
2849
2821
|
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;
|
|
2850
2822
|
}[] | undefined;
|
|
2851
|
-
fit?: "
|
|
2823
|
+
fit?: "none" | "crop" | "cover" | "contain" | undefined;
|
|
2852
2824
|
offset?: {
|
|
2853
2825
|
x: number | {
|
|
2854
2826
|
length: number;
|
|
@@ -2908,8 +2880,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
2908
2880
|
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;
|
|
2909
2881
|
}[] | undefined;
|
|
2910
2882
|
} | {
|
|
2911
|
-
type: "html";
|
|
2912
2883
|
html: string;
|
|
2884
|
+
type: "html";
|
|
2913
2885
|
css: string;
|
|
2914
2886
|
width?: number | undefined;
|
|
2915
2887
|
height?: number | undefined;
|
|
@@ -3002,7 +2974,7 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3002
2974
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3003
2975
|
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;
|
|
3004
2976
|
}[] | undefined;
|
|
3005
|
-
fit?: "
|
|
2977
|
+
fit?: "none" | "crop" | "cover" | "contain" | undefined;
|
|
3006
2978
|
offset?: {
|
|
3007
2979
|
x?: number | {
|
|
3008
2980
|
length: number;
|
|
@@ -3064,8 +3036,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3064
3036
|
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;
|
|
3065
3037
|
}[] | undefined;
|
|
3066
3038
|
} | {
|
|
3067
|
-
type: "html";
|
|
3068
3039
|
html: string;
|
|
3040
|
+
type: "html";
|
|
3069
3041
|
css: string;
|
|
3070
3042
|
width?: number | undefined;
|
|
3071
3043
|
height?: number | undefined;
|
|
@@ -3158,7 +3130,7 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3158
3130
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3159
3131
|
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;
|
|
3160
3132
|
}[] | undefined;
|
|
3161
|
-
fit?: "
|
|
3133
|
+
fit?: "none" | "crop" | "cover" | "contain" | undefined;
|
|
3162
3134
|
offset?: {
|
|
3163
3135
|
x: number | {
|
|
3164
3136
|
length: number;
|
|
@@ -3220,8 +3192,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3220
3192
|
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;
|
|
3221
3193
|
}[] | undefined;
|
|
3222
3194
|
} | {
|
|
3223
|
-
type: "html";
|
|
3224
3195
|
html: string;
|
|
3196
|
+
type: "html";
|
|
3225
3197
|
css: string;
|
|
3226
3198
|
width?: number | undefined;
|
|
3227
3199
|
height?: number | undefined;
|
|
@@ -3314,7 +3286,7 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3314
3286
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3315
3287
|
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;
|
|
3316
3288
|
}[] | undefined;
|
|
3317
|
-
fit?: "
|
|
3289
|
+
fit?: "none" | "crop" | "cover" | "contain" | undefined;
|
|
3318
3290
|
offset?: {
|
|
3319
3291
|
x?: number | {
|
|
3320
3292
|
length: number;
|
|
@@ -3378,8 +3350,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3378
3350
|
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;
|
|
3379
3351
|
}[] | undefined;
|
|
3380
3352
|
} | {
|
|
3381
|
-
type: "html";
|
|
3382
3353
|
html: string;
|
|
3354
|
+
type: "html";
|
|
3383
3355
|
css: string;
|
|
3384
3356
|
width?: number | undefined;
|
|
3385
3357
|
height?: number | undefined;
|
|
@@ -3472,7 +3444,7 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3472
3444
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3473
3445
|
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;
|
|
3474
3446
|
}[] | undefined;
|
|
3475
|
-
fit?: "
|
|
3447
|
+
fit?: "none" | "crop" | "cover" | "contain" | undefined;
|
|
3476
3448
|
offset?: {
|
|
3477
3449
|
x: number | {
|
|
3478
3450
|
length: number;
|
|
@@ -3540,8 +3512,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3540
3512
|
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;
|
|
3541
3513
|
}[] | undefined;
|
|
3542
3514
|
} | {
|
|
3543
|
-
type: "html";
|
|
3544
3515
|
html: string;
|
|
3516
|
+
type: "html";
|
|
3545
3517
|
css: string;
|
|
3546
3518
|
width?: number | undefined;
|
|
3547
3519
|
height?: number | undefined;
|
|
@@ -3634,7 +3606,7 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3634
3606
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3635
3607
|
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;
|
|
3636
3608
|
}[] | undefined;
|
|
3637
|
-
fit?: "
|
|
3609
|
+
fit?: "none" | "crop" | "cover" | "contain" | undefined;
|
|
3638
3610
|
offset?: {
|
|
3639
3611
|
x?: number | {
|
|
3640
3612
|
length: number;
|
|
@@ -3714,6 +3686,14 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3714
3686
|
fps?: number | undefined;
|
|
3715
3687
|
}>;
|
|
3716
3688
|
}, "strip", zod.ZodTypeAny, {
|
|
3689
|
+
output: {
|
|
3690
|
+
format: string;
|
|
3691
|
+
size: {
|
|
3692
|
+
width: number;
|
|
3693
|
+
height: number;
|
|
3694
|
+
};
|
|
3695
|
+
fps?: number | undefined;
|
|
3696
|
+
};
|
|
3717
3697
|
timeline: {
|
|
3718
3698
|
tracks: {
|
|
3719
3699
|
clips: {
|
|
@@ -3732,8 +3712,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3732
3712
|
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;
|
|
3733
3713
|
}[] | undefined;
|
|
3734
3714
|
} | {
|
|
3735
|
-
type: "html";
|
|
3736
3715
|
html: string;
|
|
3716
|
+
type: "html";
|
|
3737
3717
|
css: string;
|
|
3738
3718
|
width?: number | undefined;
|
|
3739
3719
|
height?: number | undefined;
|
|
@@ -3826,7 +3806,7 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3826
3806
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3827
3807
|
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;
|
|
3828
3808
|
}[] | undefined;
|
|
3829
|
-
fit?: "
|
|
3809
|
+
fit?: "none" | "crop" | "cover" | "contain" | undefined;
|
|
3830
3810
|
offset?: {
|
|
3831
3811
|
x: number | {
|
|
3832
3812
|
length: number;
|
|
@@ -3877,6 +3857,7 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3877
3857
|
src: string;
|
|
3878
3858
|
}[] | undefined;
|
|
3879
3859
|
};
|
|
3860
|
+
}, {
|
|
3880
3861
|
output: {
|
|
3881
3862
|
format: string;
|
|
3882
3863
|
size: {
|
|
@@ -3885,7 +3866,6 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3885
3866
|
};
|
|
3886
3867
|
fps?: number | undefined;
|
|
3887
3868
|
};
|
|
3888
|
-
}, {
|
|
3889
3869
|
timeline: {
|
|
3890
3870
|
tracks: {
|
|
3891
3871
|
clips: {
|
|
@@ -3904,8 +3884,8 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3904
3884
|
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;
|
|
3905
3885
|
}[] | undefined;
|
|
3906
3886
|
} | {
|
|
3907
|
-
type: "html";
|
|
3908
3887
|
html: string;
|
|
3888
|
+
type: "html";
|
|
3909
3889
|
css: string;
|
|
3910
3890
|
width?: number | undefined;
|
|
3911
3891
|
height?: number | undefined;
|
|
@@ -3998,7 +3978,7 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
3998
3978
|
interpolation?: "linear" | "bezier" | "constant" | undefined;
|
|
3999
3979
|
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;
|
|
4000
3980
|
}[] | undefined;
|
|
4001
|
-
fit?: "
|
|
3981
|
+
fit?: "none" | "crop" | "cover" | "contain" | undefined;
|
|
4002
3982
|
offset?: {
|
|
4003
3983
|
x?: number | {
|
|
4004
3984
|
length: number;
|
|
@@ -4049,13 +4029,5 @@ export declare const EditSchema: zod.ZodObject<{
|
|
|
4049
4029
|
src: string;
|
|
4050
4030
|
}[] | undefined;
|
|
4051
4031
|
};
|
|
4052
|
-
output: {
|
|
4053
|
-
format: string;
|
|
4054
|
-
size: {
|
|
4055
|
-
width: number;
|
|
4056
|
-
height: number;
|
|
4057
|
-
};
|
|
4058
|
-
fps?: number | undefined;
|
|
4059
|
-
};
|
|
4060
4032
|
}>;
|
|
4061
4033
|
export type Track = zod.infer<typeof TrackSchema>;
|