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