@rendley/sdk 1.9.3 → 1.9.6
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/Engine.d.ts +9 -4
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -1
- package/dist/modules/clip/Clip.d.ts +62 -62
- package/dist/modules/clip/clips/audio/AudioClip.d.ts +5 -5
- package/dist/modules/clip/clips/custom/CustomClip.d.ts +4 -4
- package/dist/modules/clip/clips/htmlText/HtmlTextClip.d.ts +5 -5
- package/dist/modules/clip/clips/lottie/LottieClip.d.ts +5 -5
- package/dist/modules/clip/clips/shape/ShapeClip.d.ts +5 -5
- package/dist/modules/clip/clips/shape/ShapeStyle.d.ts +8 -8
- package/dist/modules/clip/clips/text/TextClip.d.ts +5 -5
- package/dist/modules/clip/clips/text/TextStyle.d.ts +8 -8
- package/dist/modules/clip/clips/video/VideoClip.d.ts +5 -5
- package/dist/modules/display/Display.d.ts +3 -3
- package/dist/modules/ffmpeg/FFmpeg.d.ts +4 -0
- package/dist/modules/layer/Layer.d.ts +5 -5
- package/dist/modules/library/Library.d.ts +5 -5
- package/dist/modules/library/MediaData.d.ts +7 -4
- package/dist/modules/library/types/MediaData.types.d.ts +1 -0
- package/dist/modules/renderer/Renderer.d.ts +1 -0
- package/dist/modules/settings/Settings.d.ts +7 -0
- package/dist/modules/subtitles/SubtitleManager.d.ts +1 -1
- package/dist/modules/timeline/Timeline.d.ts +7 -7
- package/dist/modules/transcode/ITranscodeProvider.d.ts +36 -0
- package/dist/modules/transcode/index.d.ts +1 -1
- package/dist/modules/transition/Transition.d.ts +3 -3
- package/dist/utils/animation/animation.d.ts +12 -12
- package/dist/utils/timer/performanceTimer.d.ts +17 -0
- package/package.json +2 -1
- package/dist/modules/transcode/TranscodeProviderBase.d.ts +0 -33
|
@@ -54,14 +54,14 @@ export declare const AnimationClassSchema: z.ZodObject<{
|
|
|
54
54
|
space: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').AnimationSpaceEnum>>>;
|
|
55
55
|
relativeProperty: z.ZodOptional<z.ZodString>;
|
|
56
56
|
}, "strip", z.ZodTypeAny, {
|
|
57
|
-
time: number;
|
|
58
57
|
value: string | number;
|
|
58
|
+
time: number;
|
|
59
59
|
easing: import('../../utils/animation/animation').EasingEnum;
|
|
60
60
|
space: import('../../utils/animation/animation').AnimationSpaceEnum;
|
|
61
61
|
relativeProperty?: string | undefined;
|
|
62
62
|
}, {
|
|
63
|
-
time: number;
|
|
64
63
|
value: string | number;
|
|
64
|
+
time: number;
|
|
65
65
|
easing?: import('../../utils/animation/animation').EasingEnum | undefined;
|
|
66
66
|
space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
|
|
67
67
|
relativeProperty?: string | undefined;
|
|
@@ -71,8 +71,8 @@ export declare const AnimationClassSchema: z.ZodObject<{
|
|
|
71
71
|
outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
|
|
72
72
|
property: string;
|
|
73
73
|
keyframes: {
|
|
74
|
-
time: number;
|
|
75
74
|
value: string | number;
|
|
75
|
+
time: number;
|
|
76
76
|
easing: import('../../utils/animation/animation').EasingEnum;
|
|
77
77
|
space: import('../../utils/animation/animation').AnimationSpaceEnum;
|
|
78
78
|
relativeProperty?: string | undefined;
|
|
@@ -80,8 +80,8 @@ export declare const AnimationClassSchema: z.ZodObject<{
|
|
|
80
80
|
}, {
|
|
81
81
|
property: string;
|
|
82
82
|
keyframes: {
|
|
83
|
-
time: number;
|
|
84
83
|
value: string | number;
|
|
84
|
+
time: number;
|
|
85
85
|
easing?: import('../../utils/animation/animation').EasingEnum | undefined;
|
|
86
86
|
space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
|
|
87
87
|
relativeProperty?: string | undefined;
|
|
@@ -98,8 +98,8 @@ export declare const AnimationClassSchema: z.ZodObject<{
|
|
|
98
98
|
outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
|
|
99
99
|
property: string;
|
|
100
100
|
keyframes: {
|
|
101
|
-
time: number;
|
|
102
101
|
value: string | number;
|
|
102
|
+
time: number;
|
|
103
103
|
easing: import('../../utils/animation/animation').EasingEnum;
|
|
104
104
|
space: import('../../utils/animation/animation').AnimationSpaceEnum;
|
|
105
105
|
relativeProperty?: string | undefined;
|
|
@@ -113,8 +113,8 @@ export declare const AnimationClassSchema: z.ZodObject<{
|
|
|
113
113
|
propertyAnimations: {
|
|
114
114
|
property: string;
|
|
115
115
|
keyframes: {
|
|
116
|
-
time: number;
|
|
117
116
|
value: string | number;
|
|
117
|
+
time: number;
|
|
118
118
|
easing?: import('../../utils/animation/animation').EasingEnum | undefined;
|
|
119
119
|
space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
|
|
120
120
|
relativeProperty?: string | undefined;
|
|
@@ -146,14 +146,14 @@ export declare const AnimationClassSchema: z.ZodObject<{
|
|
|
146
146
|
space: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').AnimationSpaceEnum>>>;
|
|
147
147
|
relativeProperty: z.ZodOptional<z.ZodString>;
|
|
148
148
|
}, "strip", z.ZodTypeAny, {
|
|
149
|
-
time: number;
|
|
150
149
|
value: string | number;
|
|
150
|
+
time: number;
|
|
151
151
|
easing: import('../../utils/animation/animation').EasingEnum;
|
|
152
152
|
space: import('../../utils/animation/animation').AnimationSpaceEnum;
|
|
153
153
|
relativeProperty?: string | undefined;
|
|
154
154
|
}, {
|
|
155
|
-
time: number;
|
|
156
155
|
value: string | number;
|
|
156
|
+
time: number;
|
|
157
157
|
easing?: import('../../utils/animation/animation').EasingEnum | undefined;
|
|
158
158
|
space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
|
|
159
159
|
relativeProperty?: string | undefined;
|
|
@@ -163,8 +163,8 @@ export declare const AnimationClassSchema: z.ZodObject<{
|
|
|
163
163
|
outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
|
|
164
164
|
property: string;
|
|
165
165
|
keyframes: {
|
|
166
|
-
time: number;
|
|
167
166
|
value: string | number;
|
|
167
|
+
time: number;
|
|
168
168
|
easing: import('../../utils/animation/animation').EasingEnum;
|
|
169
169
|
space: import('../../utils/animation/animation').AnimationSpaceEnum;
|
|
170
170
|
relativeProperty?: string | undefined;
|
|
@@ -172,8 +172,8 @@ export declare const AnimationClassSchema: z.ZodObject<{
|
|
|
172
172
|
}, {
|
|
173
173
|
property: string;
|
|
174
174
|
keyframes: {
|
|
175
|
-
time: number;
|
|
176
175
|
value: string | number;
|
|
176
|
+
time: number;
|
|
177
177
|
easing?: import('../../utils/animation/animation').EasingEnum | undefined;
|
|
178
178
|
space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
|
|
179
179
|
relativeProperty?: string | undefined;
|
|
@@ -190,8 +190,8 @@ export declare const AnimationClassSchema: z.ZodObject<{
|
|
|
190
190
|
outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
|
|
191
191
|
property: string;
|
|
192
192
|
keyframes: {
|
|
193
|
-
time: number;
|
|
194
193
|
value: string | number;
|
|
194
|
+
time: number;
|
|
195
195
|
easing: import('../../utils/animation/animation').EasingEnum;
|
|
196
196
|
space: import('../../utils/animation/animation').AnimationSpaceEnum;
|
|
197
197
|
relativeProperty?: string | undefined;
|
|
@@ -205,8 +205,8 @@ export declare const AnimationClassSchema: z.ZodObject<{
|
|
|
205
205
|
propertyAnimations: {
|
|
206
206
|
property: string;
|
|
207
207
|
keyframes: {
|
|
208
|
-
time: number;
|
|
209
208
|
value: string | number;
|
|
209
|
+
time: number;
|
|
210
210
|
easing?: import('../../utils/animation/animation').EasingEnum | undefined;
|
|
211
211
|
space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
|
|
212
212
|
relativeProperty?: string | undefined;
|
|
@@ -238,14 +238,14 @@ export declare const AnimationClassSchema: z.ZodObject<{
|
|
|
238
238
|
space: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').AnimationSpaceEnum>>>;
|
|
239
239
|
relativeProperty: z.ZodOptional<z.ZodString>;
|
|
240
240
|
}, "strip", z.ZodTypeAny, {
|
|
241
|
-
time: number;
|
|
242
241
|
value: string | number;
|
|
242
|
+
time: number;
|
|
243
243
|
easing: import('../../utils/animation/animation').EasingEnum;
|
|
244
244
|
space: import('../../utils/animation/animation').AnimationSpaceEnum;
|
|
245
245
|
relativeProperty?: string | undefined;
|
|
246
246
|
}, {
|
|
247
|
-
time: number;
|
|
248
247
|
value: string | number;
|
|
248
|
+
time: number;
|
|
249
249
|
easing?: import('../../utils/animation/animation').EasingEnum | undefined;
|
|
250
250
|
space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
|
|
251
251
|
relativeProperty?: string | undefined;
|
|
@@ -255,8 +255,8 @@ export declare const AnimationClassSchema: z.ZodObject<{
|
|
|
255
255
|
outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
|
|
256
256
|
property: string;
|
|
257
257
|
keyframes: {
|
|
258
|
-
time: number;
|
|
259
258
|
value: string | number;
|
|
259
|
+
time: number;
|
|
260
260
|
easing: import('../../utils/animation/animation').EasingEnum;
|
|
261
261
|
space: import('../../utils/animation/animation').AnimationSpaceEnum;
|
|
262
262
|
relativeProperty?: string | undefined;
|
|
@@ -264,8 +264,8 @@ export declare const AnimationClassSchema: z.ZodObject<{
|
|
|
264
264
|
}, {
|
|
265
265
|
property: string;
|
|
266
266
|
keyframes: {
|
|
267
|
-
time: number;
|
|
268
267
|
value: string | number;
|
|
268
|
+
time: number;
|
|
269
269
|
easing?: import('../../utils/animation/animation').EasingEnum | undefined;
|
|
270
270
|
space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
|
|
271
271
|
relativeProperty?: string | undefined;
|
|
@@ -282,8 +282,8 @@ export declare const AnimationClassSchema: z.ZodObject<{
|
|
|
282
282
|
outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
|
|
283
283
|
property: string;
|
|
284
284
|
keyframes: {
|
|
285
|
-
time: number;
|
|
286
285
|
value: string | number;
|
|
286
|
+
time: number;
|
|
287
287
|
easing: import('../../utils/animation/animation').EasingEnum;
|
|
288
288
|
space: import('../../utils/animation/animation').AnimationSpaceEnum;
|
|
289
289
|
relativeProperty?: string | undefined;
|
|
@@ -297,8 +297,8 @@ export declare const AnimationClassSchema: z.ZodObject<{
|
|
|
297
297
|
propertyAnimations: {
|
|
298
298
|
property: string;
|
|
299
299
|
keyframes: {
|
|
300
|
-
time: number;
|
|
301
300
|
value: string | number;
|
|
301
|
+
time: number;
|
|
302
302
|
easing?: import('../../utils/animation/animation').EasingEnum | undefined;
|
|
303
303
|
space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
|
|
304
304
|
relativeProperty?: string | undefined;
|
|
@@ -326,8 +326,8 @@ export declare const AnimationClassSchema: z.ZodObject<{
|
|
|
326
326
|
outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
|
|
327
327
|
property: string;
|
|
328
328
|
keyframes: {
|
|
329
|
-
time: number;
|
|
330
329
|
value: string | number;
|
|
330
|
+
time: number;
|
|
331
331
|
easing: import('../../utils/animation/animation').EasingEnum;
|
|
332
332
|
space: import('../../utils/animation/animation').AnimationSpaceEnum;
|
|
333
333
|
relativeProperty?: string | undefined;
|
|
@@ -346,8 +346,8 @@ export declare const AnimationClassSchema: z.ZodObject<{
|
|
|
346
346
|
outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
|
|
347
347
|
property: string;
|
|
348
348
|
keyframes: {
|
|
349
|
-
time: number;
|
|
350
349
|
value: string | number;
|
|
350
|
+
time: number;
|
|
351
351
|
easing: import('../../utils/animation/animation').EasingEnum;
|
|
352
352
|
space: import('../../utils/animation/animation').AnimationSpaceEnum;
|
|
353
353
|
relativeProperty?: string | undefined;
|
|
@@ -366,8 +366,8 @@ export declare const AnimationClassSchema: z.ZodObject<{
|
|
|
366
366
|
outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
|
|
367
367
|
property: string;
|
|
368
368
|
keyframes: {
|
|
369
|
-
time: number;
|
|
370
369
|
value: string | number;
|
|
370
|
+
time: number;
|
|
371
371
|
easing: import('../../utils/animation/animation').EasingEnum;
|
|
372
372
|
space: import('../../utils/animation/animation').AnimationSpaceEnum;
|
|
373
373
|
relativeProperty?: string | undefined;
|
|
@@ -387,8 +387,8 @@ export declare const AnimationClassSchema: z.ZodObject<{
|
|
|
387
387
|
propertyAnimations: {
|
|
388
388
|
property: string;
|
|
389
389
|
keyframes: {
|
|
390
|
-
time: number;
|
|
391
390
|
value: string | number;
|
|
391
|
+
time: number;
|
|
392
392
|
easing?: import('../../utils/animation/animation').EasingEnum | undefined;
|
|
393
393
|
space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
|
|
394
394
|
relativeProperty?: string | undefined;
|
|
@@ -407,8 +407,8 @@ export declare const AnimationClassSchema: z.ZodObject<{
|
|
|
407
407
|
propertyAnimations: {
|
|
408
408
|
property: string;
|
|
409
409
|
keyframes: {
|
|
410
|
-
time: number;
|
|
411
410
|
value: string | number;
|
|
411
|
+
time: number;
|
|
412
412
|
easing?: import('../../utils/animation/animation').EasingEnum | undefined;
|
|
413
413
|
space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
|
|
414
414
|
relativeProperty?: string | undefined;
|
|
@@ -427,8 +427,8 @@ export declare const AnimationClassSchema: z.ZodObject<{
|
|
|
427
427
|
propertyAnimations: {
|
|
428
428
|
property: string;
|
|
429
429
|
keyframes: {
|
|
430
|
-
time: number;
|
|
431
430
|
value: string | number;
|
|
431
|
+
time: number;
|
|
432
432
|
easing?: import('../../utils/animation/animation').EasingEnum | undefined;
|
|
433
433
|
space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
|
|
434
434
|
relativeProperty?: string | undefined;
|
|
@@ -550,14 +550,14 @@ export declare const ClipSchema: z.ZodObject<{
|
|
|
550
550
|
space: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').AnimationSpaceEnum>>>;
|
|
551
551
|
relativeProperty: z.ZodOptional<z.ZodString>;
|
|
552
552
|
}, "strip", z.ZodTypeAny, {
|
|
553
|
-
time: number;
|
|
554
553
|
value: string | number;
|
|
554
|
+
time: number;
|
|
555
555
|
easing: import('../../utils/animation/animation').EasingEnum;
|
|
556
556
|
space: import('../../utils/animation/animation').AnimationSpaceEnum;
|
|
557
557
|
relativeProperty?: string | undefined;
|
|
558
558
|
}, {
|
|
559
|
-
time: number;
|
|
560
559
|
value: string | number;
|
|
560
|
+
time: number;
|
|
561
561
|
easing?: import('../../utils/animation/animation').EasingEnum | undefined;
|
|
562
562
|
space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
|
|
563
563
|
relativeProperty?: string | undefined;
|
|
@@ -567,8 +567,8 @@ export declare const ClipSchema: z.ZodObject<{
|
|
|
567
567
|
outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
|
|
568
568
|
property: string;
|
|
569
569
|
keyframes: {
|
|
570
|
-
time: number;
|
|
571
570
|
value: string | number;
|
|
571
|
+
time: number;
|
|
572
572
|
easing: import('../../utils/animation/animation').EasingEnum;
|
|
573
573
|
space: import('../../utils/animation/animation').AnimationSpaceEnum;
|
|
574
574
|
relativeProperty?: string | undefined;
|
|
@@ -576,8 +576,8 @@ export declare const ClipSchema: z.ZodObject<{
|
|
|
576
576
|
}, {
|
|
577
577
|
property: string;
|
|
578
578
|
keyframes: {
|
|
579
|
-
time: number;
|
|
580
579
|
value: string | number;
|
|
580
|
+
time: number;
|
|
581
581
|
easing?: import('../../utils/animation/animation').EasingEnum | undefined;
|
|
582
582
|
space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
|
|
583
583
|
relativeProperty?: string | undefined;
|
|
@@ -594,8 +594,8 @@ export declare const ClipSchema: z.ZodObject<{
|
|
|
594
594
|
outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
|
|
595
595
|
property: string;
|
|
596
596
|
keyframes: {
|
|
597
|
-
time: number;
|
|
598
597
|
value: string | number;
|
|
598
|
+
time: number;
|
|
599
599
|
easing: import('../../utils/animation/animation').EasingEnum;
|
|
600
600
|
space: import('../../utils/animation/animation').AnimationSpaceEnum;
|
|
601
601
|
relativeProperty?: string | undefined;
|
|
@@ -609,8 +609,8 @@ export declare const ClipSchema: z.ZodObject<{
|
|
|
609
609
|
propertyAnimations: {
|
|
610
610
|
property: string;
|
|
611
611
|
keyframes: {
|
|
612
|
-
time: number;
|
|
613
612
|
value: string | number;
|
|
613
|
+
time: number;
|
|
614
614
|
easing?: import('../../utils/animation/animation').EasingEnum | undefined;
|
|
615
615
|
space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
|
|
616
616
|
relativeProperty?: string | undefined;
|
|
@@ -642,14 +642,14 @@ export declare const ClipSchema: z.ZodObject<{
|
|
|
642
642
|
space: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').AnimationSpaceEnum>>>;
|
|
643
643
|
relativeProperty: z.ZodOptional<z.ZodString>;
|
|
644
644
|
}, "strip", z.ZodTypeAny, {
|
|
645
|
-
time: number;
|
|
646
645
|
value: string | number;
|
|
646
|
+
time: number;
|
|
647
647
|
easing: import('../../utils/animation/animation').EasingEnum;
|
|
648
648
|
space: import('../../utils/animation/animation').AnimationSpaceEnum;
|
|
649
649
|
relativeProperty?: string | undefined;
|
|
650
650
|
}, {
|
|
651
|
-
time: number;
|
|
652
651
|
value: string | number;
|
|
652
|
+
time: number;
|
|
653
653
|
easing?: import('../../utils/animation/animation').EasingEnum | undefined;
|
|
654
654
|
space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
|
|
655
655
|
relativeProperty?: string | undefined;
|
|
@@ -659,8 +659,8 @@ export declare const ClipSchema: z.ZodObject<{
|
|
|
659
659
|
outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
|
|
660
660
|
property: string;
|
|
661
661
|
keyframes: {
|
|
662
|
-
time: number;
|
|
663
662
|
value: string | number;
|
|
663
|
+
time: number;
|
|
664
664
|
easing: import('../../utils/animation/animation').EasingEnum;
|
|
665
665
|
space: import('../../utils/animation/animation').AnimationSpaceEnum;
|
|
666
666
|
relativeProperty?: string | undefined;
|
|
@@ -668,8 +668,8 @@ export declare const ClipSchema: z.ZodObject<{
|
|
|
668
668
|
}, {
|
|
669
669
|
property: string;
|
|
670
670
|
keyframes: {
|
|
671
|
-
time: number;
|
|
672
671
|
value: string | number;
|
|
672
|
+
time: number;
|
|
673
673
|
easing?: import('../../utils/animation/animation').EasingEnum | undefined;
|
|
674
674
|
space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
|
|
675
675
|
relativeProperty?: string | undefined;
|
|
@@ -686,8 +686,8 @@ export declare const ClipSchema: z.ZodObject<{
|
|
|
686
686
|
outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
|
|
687
687
|
property: string;
|
|
688
688
|
keyframes: {
|
|
689
|
-
time: number;
|
|
690
689
|
value: string | number;
|
|
690
|
+
time: number;
|
|
691
691
|
easing: import('../../utils/animation/animation').EasingEnum;
|
|
692
692
|
space: import('../../utils/animation/animation').AnimationSpaceEnum;
|
|
693
693
|
relativeProperty?: string | undefined;
|
|
@@ -701,8 +701,8 @@ export declare const ClipSchema: z.ZodObject<{
|
|
|
701
701
|
propertyAnimations: {
|
|
702
702
|
property: string;
|
|
703
703
|
keyframes: {
|
|
704
|
-
time: number;
|
|
705
704
|
value: string | number;
|
|
705
|
+
time: number;
|
|
706
706
|
easing?: import('../../utils/animation/animation').EasingEnum | undefined;
|
|
707
707
|
space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
|
|
708
708
|
relativeProperty?: string | undefined;
|
|
@@ -734,14 +734,14 @@ export declare const ClipSchema: z.ZodObject<{
|
|
|
734
734
|
space: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import('../../utils/animation/animation').AnimationSpaceEnum>>>;
|
|
735
735
|
relativeProperty: z.ZodOptional<z.ZodString>;
|
|
736
736
|
}, "strip", z.ZodTypeAny, {
|
|
737
|
-
time: number;
|
|
738
737
|
value: string | number;
|
|
738
|
+
time: number;
|
|
739
739
|
easing: import('../../utils/animation/animation').EasingEnum;
|
|
740
740
|
space: import('../../utils/animation/animation').AnimationSpaceEnum;
|
|
741
741
|
relativeProperty?: string | undefined;
|
|
742
742
|
}, {
|
|
743
|
-
time: number;
|
|
744
743
|
value: string | number;
|
|
744
|
+
time: number;
|
|
745
745
|
easing?: import('../../utils/animation/animation').EasingEnum | undefined;
|
|
746
746
|
space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
|
|
747
747
|
relativeProperty?: string | undefined;
|
|
@@ -751,8 +751,8 @@ export declare const ClipSchema: z.ZodObject<{
|
|
|
751
751
|
outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
|
|
752
752
|
property: string;
|
|
753
753
|
keyframes: {
|
|
754
|
-
time: number;
|
|
755
754
|
value: string | number;
|
|
755
|
+
time: number;
|
|
756
756
|
easing: import('../../utils/animation/animation').EasingEnum;
|
|
757
757
|
space: import('../../utils/animation/animation').AnimationSpaceEnum;
|
|
758
758
|
relativeProperty?: string | undefined;
|
|
@@ -760,8 +760,8 @@ export declare const ClipSchema: z.ZodObject<{
|
|
|
760
760
|
}, {
|
|
761
761
|
property: string;
|
|
762
762
|
keyframes: {
|
|
763
|
-
time: number;
|
|
764
763
|
value: string | number;
|
|
764
|
+
time: number;
|
|
765
765
|
easing?: import('../../utils/animation/animation').EasingEnum | undefined;
|
|
766
766
|
space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
|
|
767
767
|
relativeProperty?: string | undefined;
|
|
@@ -778,8 +778,8 @@ export declare const ClipSchema: z.ZodObject<{
|
|
|
778
778
|
outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
|
|
779
779
|
property: string;
|
|
780
780
|
keyframes: {
|
|
781
|
-
time: number;
|
|
782
781
|
value: string | number;
|
|
782
|
+
time: number;
|
|
783
783
|
easing: import('../../utils/animation/animation').EasingEnum;
|
|
784
784
|
space: import('../../utils/animation/animation').AnimationSpaceEnum;
|
|
785
785
|
relativeProperty?: string | undefined;
|
|
@@ -793,8 +793,8 @@ export declare const ClipSchema: z.ZodObject<{
|
|
|
793
793
|
propertyAnimations: {
|
|
794
794
|
property: string;
|
|
795
795
|
keyframes: {
|
|
796
|
-
time: number;
|
|
797
796
|
value: string | number;
|
|
797
|
+
time: number;
|
|
798
798
|
easing?: import('../../utils/animation/animation').EasingEnum | undefined;
|
|
799
799
|
space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
|
|
800
800
|
relativeProperty?: string | undefined;
|
|
@@ -822,8 +822,8 @@ export declare const ClipSchema: z.ZodObject<{
|
|
|
822
822
|
outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
|
|
823
823
|
property: string;
|
|
824
824
|
keyframes: {
|
|
825
|
-
time: number;
|
|
826
825
|
value: string | number;
|
|
826
|
+
time: number;
|
|
827
827
|
easing: import('../../utils/animation/animation').EasingEnum;
|
|
828
828
|
space: import('../../utils/animation/animation').AnimationSpaceEnum;
|
|
829
829
|
relativeProperty?: string | undefined;
|
|
@@ -842,8 +842,8 @@ export declare const ClipSchema: z.ZodObject<{
|
|
|
842
842
|
outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
|
|
843
843
|
property: string;
|
|
844
844
|
keyframes: {
|
|
845
|
-
time: number;
|
|
846
845
|
value: string | number;
|
|
846
|
+
time: number;
|
|
847
847
|
easing: import('../../utils/animation/animation').EasingEnum;
|
|
848
848
|
space: import('../../utils/animation/animation').AnimationSpaceEnum;
|
|
849
849
|
relativeProperty?: string | undefined;
|
|
@@ -862,8 +862,8 @@ export declare const ClipSchema: z.ZodObject<{
|
|
|
862
862
|
outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
|
|
863
863
|
property: string;
|
|
864
864
|
keyframes: {
|
|
865
|
-
time: number;
|
|
866
865
|
value: string | number;
|
|
866
|
+
time: number;
|
|
867
867
|
easing: import('../../utils/animation/animation').EasingEnum;
|
|
868
868
|
space: import('../../utils/animation/animation').AnimationSpaceEnum;
|
|
869
869
|
relativeProperty?: string | undefined;
|
|
@@ -883,8 +883,8 @@ export declare const ClipSchema: z.ZodObject<{
|
|
|
883
883
|
propertyAnimations: {
|
|
884
884
|
property: string;
|
|
885
885
|
keyframes: {
|
|
886
|
-
time: number;
|
|
887
886
|
value: string | number;
|
|
887
|
+
time: number;
|
|
888
888
|
easing?: import('../../utils/animation/animation').EasingEnum | undefined;
|
|
889
889
|
space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
|
|
890
890
|
relativeProperty?: string | undefined;
|
|
@@ -903,8 +903,8 @@ export declare const ClipSchema: z.ZodObject<{
|
|
|
903
903
|
propertyAnimations: {
|
|
904
904
|
property: string;
|
|
905
905
|
keyframes: {
|
|
906
|
-
time: number;
|
|
907
906
|
value: string | number;
|
|
907
|
+
time: number;
|
|
908
908
|
easing?: import('../../utils/animation/animation').EasingEnum | undefined;
|
|
909
909
|
space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
|
|
910
910
|
relativeProperty?: string | undefined;
|
|
@@ -923,8 +923,8 @@ export declare const ClipSchema: z.ZodObject<{
|
|
|
923
923
|
propertyAnimations: {
|
|
924
924
|
property: string;
|
|
925
925
|
keyframes: {
|
|
926
|
-
time: number;
|
|
927
926
|
value: string | number;
|
|
927
|
+
time: number;
|
|
928
928
|
easing?: import('../../utils/animation/animation').EasingEnum | undefined;
|
|
929
929
|
space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
|
|
930
930
|
relativeProperty?: string | undefined;
|
|
@@ -959,8 +959,8 @@ export declare const ClipSchema: z.ZodObject<{
|
|
|
959
959
|
wrapMode?: MaskWrapModeEnum | undefined;
|
|
960
960
|
}>, "many">>;
|
|
961
961
|
}, "strip", z.ZodTypeAny, {
|
|
962
|
-
type: string;
|
|
963
962
|
id: string;
|
|
963
|
+
type: string;
|
|
964
964
|
subtitlesOffset: number;
|
|
965
965
|
startTime: number;
|
|
966
966
|
duration: number;
|
|
@@ -1001,8 +1001,8 @@ export declare const ClipSchema: z.ZodObject<{
|
|
|
1001
1001
|
outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
|
|
1002
1002
|
property: string;
|
|
1003
1003
|
keyframes: {
|
|
1004
|
-
time: number;
|
|
1005
1004
|
value: string | number;
|
|
1005
|
+
time: number;
|
|
1006
1006
|
easing: import('../../utils/animation/animation').EasingEnum;
|
|
1007
1007
|
space: import('../../utils/animation/animation').AnimationSpaceEnum;
|
|
1008
1008
|
relativeProperty?: string | undefined;
|
|
@@ -1021,8 +1021,8 @@ export declare const ClipSchema: z.ZodObject<{
|
|
|
1021
1021
|
outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
|
|
1022
1022
|
property: string;
|
|
1023
1023
|
keyframes: {
|
|
1024
|
-
time: number;
|
|
1025
1024
|
value: string | number;
|
|
1025
|
+
time: number;
|
|
1026
1026
|
easing: import('../../utils/animation/animation').EasingEnum;
|
|
1027
1027
|
space: import('../../utils/animation/animation').AnimationSpaceEnum;
|
|
1028
1028
|
relativeProperty?: string | undefined;
|
|
@@ -1041,8 +1041,8 @@ export declare const ClipSchema: z.ZodObject<{
|
|
|
1041
1041
|
outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
|
|
1042
1042
|
property: string;
|
|
1043
1043
|
keyframes: {
|
|
1044
|
-
time: number;
|
|
1045
1044
|
value: string | number;
|
|
1045
|
+
time: number;
|
|
1046
1046
|
easing: import('../../utils/animation/animation').EasingEnum;
|
|
1047
1047
|
space: import('../../utils/animation/animation').AnimationSpaceEnum;
|
|
1048
1048
|
relativeProperty?: string | undefined;
|
|
@@ -1064,8 +1064,8 @@ export declare const ClipSchema: z.ZodObject<{
|
|
|
1064
1064
|
clipId: string;
|
|
1065
1065
|
}[] | undefined;
|
|
1066
1066
|
}, {
|
|
1067
|
-
type: string;
|
|
1068
1067
|
id: string;
|
|
1068
|
+
type: string;
|
|
1069
1069
|
subtitlesOffset: number;
|
|
1070
1070
|
startTime: number;
|
|
1071
1071
|
duration: number;
|
|
@@ -1101,8 +1101,8 @@ export declare const ClipSchema: z.ZodObject<{
|
|
|
1101
1101
|
propertyAnimations: {
|
|
1102
1102
|
property: string;
|
|
1103
1103
|
keyframes: {
|
|
1104
|
-
time: number;
|
|
1105
1104
|
value: string | number;
|
|
1105
|
+
time: number;
|
|
1106
1106
|
easing?: import('../../utils/animation/animation').EasingEnum | undefined;
|
|
1107
1107
|
space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
|
|
1108
1108
|
relativeProperty?: string | undefined;
|
|
@@ -1121,8 +1121,8 @@ export declare const ClipSchema: z.ZodObject<{
|
|
|
1121
1121
|
propertyAnimations: {
|
|
1122
1122
|
property: string;
|
|
1123
1123
|
keyframes: {
|
|
1124
|
-
time: number;
|
|
1125
1124
|
value: string | number;
|
|
1125
|
+
time: number;
|
|
1126
1126
|
easing?: import('../../utils/animation/animation').EasingEnum | undefined;
|
|
1127
1127
|
space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
|
|
1128
1128
|
relativeProperty?: string | undefined;
|
|
@@ -1141,8 +1141,8 @@ export declare const ClipSchema: z.ZodObject<{
|
|
|
1141
1141
|
propertyAnimations: {
|
|
1142
1142
|
property: string;
|
|
1143
1143
|
keyframes: {
|
|
1144
|
-
time: number;
|
|
1145
1144
|
value: string | number;
|
|
1145
|
+
time: number;
|
|
1146
1146
|
easing?: import('../../utils/animation/animation').EasingEnum | undefined;
|
|
1147
1147
|
space?: import('../../utils/animation/animation').AnimationSpaceEnum | undefined;
|
|
1148
1148
|
relativeProperty?: string | undefined;
|
|
@@ -1241,8 +1241,8 @@ export declare class Clip<T extends PIXI.Sprite = PIXI.Sprite, K extends ClipSty
|
|
|
1241
1241
|
}): boolean;
|
|
1242
1242
|
destroy(): void;
|
|
1243
1243
|
onPlay(currentTime: number): Promise<void>;
|
|
1244
|
-
onPause(currentTime: number): void
|
|
1245
|
-
onResize(width: number, height: number): void
|
|
1244
|
+
onPause(currentTime: number): Promise<void>;
|
|
1245
|
+
onResize(width: number, height: number): Promise<void>;
|
|
1246
1246
|
onRenderStart(options: ExportOptions): Promise<void>;
|
|
1247
1247
|
onRenderDone(canceled: boolean): Promise<void>;
|
|
1248
1248
|
isActive(currentTime: number): boolean;
|
|
@@ -1272,8 +1272,8 @@ export declare class Clip<T extends PIXI.Sprite = PIXI.Sprite, K extends ClipSty
|
|
|
1272
1272
|
clone(): Clip<PIXI.Sprite, ClipStyle<PIXI.Sprite>>;
|
|
1273
1273
|
protected postRendererInit(): void;
|
|
1274
1274
|
serialize(): {
|
|
1275
|
-
type: string;
|
|
1276
1275
|
id: string;
|
|
1276
|
+
type: string;
|
|
1277
1277
|
subtitlesOffset: number;
|
|
1278
1278
|
startTime: number;
|
|
1279
1279
|
duration: number;
|
|
@@ -1314,8 +1314,8 @@ export declare class Clip<T extends PIXI.Sprite = PIXI.Sprite, K extends ClipSty
|
|
|
1314
1314
|
outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
|
|
1315
1315
|
property: string;
|
|
1316
1316
|
keyframes: {
|
|
1317
|
-
time: number;
|
|
1318
1317
|
value: string | number;
|
|
1318
|
+
time: number;
|
|
1319
1319
|
easing: import('../../utils/animation/animation').EasingEnum;
|
|
1320
1320
|
space: import('../../utils/animation/animation').AnimationSpaceEnum;
|
|
1321
1321
|
relativeProperty?: string | undefined;
|
|
@@ -1334,8 +1334,8 @@ export declare class Clip<T extends PIXI.Sprite = PIXI.Sprite, K extends ClipSty
|
|
|
1334
1334
|
outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
|
|
1335
1335
|
property: string;
|
|
1336
1336
|
keyframes: {
|
|
1337
|
-
time: number;
|
|
1338
1337
|
value: string | number;
|
|
1338
|
+
time: number;
|
|
1339
1339
|
easing: import('../../utils/animation/animation').EasingEnum;
|
|
1340
1340
|
space: import('../../utils/animation/animation').AnimationSpaceEnum;
|
|
1341
1341
|
relativeProperty?: string | undefined;
|
|
@@ -1354,8 +1354,8 @@ export declare class Clip<T extends PIXI.Sprite = PIXI.Sprite, K extends ClipSty
|
|
|
1354
1354
|
outOutOfRange: import('../../utils/animation/animation').OutOfRangeEnum;
|
|
1355
1355
|
property: string;
|
|
1356
1356
|
keyframes: {
|
|
1357
|
-
time: number;
|
|
1358
1357
|
value: string | number;
|
|
1358
|
+
time: number;
|
|
1359
1359
|
easing: import('../../utils/animation/animation').EasingEnum;
|
|
1360
1360
|
space: import('../../utils/animation/animation').AnimationSpaceEnum;
|
|
1361
1361
|
relativeProperty?: string | undefined;
|
|
@@ -44,8 +44,8 @@ export declare class AudioClip extends Clip {
|
|
|
44
44
|
offload(): void;
|
|
45
45
|
clone(): AudioClip;
|
|
46
46
|
serialize(): {
|
|
47
|
-
type: string;
|
|
48
47
|
id: string;
|
|
48
|
+
type: string;
|
|
49
49
|
mediaDataId: string;
|
|
50
50
|
subtitlesOffset: number;
|
|
51
51
|
startTime: number;
|
|
@@ -73,8 +73,8 @@ export declare class AudioClip extends Clip {
|
|
|
73
73
|
}[];
|
|
74
74
|
isVisible: boolean;
|
|
75
75
|
text?: string | undefined;
|
|
76
|
-
style?: unknown;
|
|
77
76
|
customData?: [string, unknown][] | undefined;
|
|
77
|
+
style?: unknown;
|
|
78
78
|
subtitlesId?: string | undefined;
|
|
79
79
|
wrapMode?: import('../../../../types').WrapModeEnum | undefined;
|
|
80
80
|
animationController?: {
|
|
@@ -87,8 +87,8 @@ export declare class AudioClip extends Clip {
|
|
|
87
87
|
outOutOfRange: import("../../../..").OutOfRangeEnum;
|
|
88
88
|
property: string;
|
|
89
89
|
keyframes: {
|
|
90
|
-
time: number;
|
|
91
90
|
value: string | number;
|
|
91
|
+
time: number;
|
|
92
92
|
easing: import("../../../..").EasingEnum;
|
|
93
93
|
space: import("../../../..").AnimationSpaceEnum;
|
|
94
94
|
relativeProperty?: string | undefined;
|
|
@@ -107,8 +107,8 @@ export declare class AudioClip extends Clip {
|
|
|
107
107
|
outOutOfRange: import("../../../..").OutOfRangeEnum;
|
|
108
108
|
property: string;
|
|
109
109
|
keyframes: {
|
|
110
|
-
time: number;
|
|
111
110
|
value: string | number;
|
|
111
|
+
time: number;
|
|
112
112
|
easing: import("../../../..").EasingEnum;
|
|
113
113
|
space: import("../../../..").AnimationSpaceEnum;
|
|
114
114
|
relativeProperty?: string | undefined;
|
|
@@ -127,8 +127,8 @@ export declare class AudioClip extends Clip {
|
|
|
127
127
|
outOutOfRange: import("../../../..").OutOfRangeEnum;
|
|
128
128
|
property: string;
|
|
129
129
|
keyframes: {
|
|
130
|
-
time: number;
|
|
131
130
|
value: string | number;
|
|
131
|
+
time: number;
|
|
132
132
|
easing: import("../../../..").EasingEnum;
|
|
133
133
|
space: import("../../../..").AnimationSpaceEnum;
|
|
134
134
|
relativeProperty?: string | undefined;
|
|
@@ -9,8 +9,8 @@ export declare class CustomClip extends Clip<PIXI.Sprite, ClipStyle> {
|
|
|
9
9
|
clone(): any;
|
|
10
10
|
destroy(): void;
|
|
11
11
|
serialize(): {
|
|
12
|
-
type: string;
|
|
13
12
|
id: string;
|
|
13
|
+
type: string;
|
|
14
14
|
subtitlesOffset: number;
|
|
15
15
|
startTime: number;
|
|
16
16
|
duration: number;
|
|
@@ -51,8 +51,8 @@ export declare class CustomClip extends Clip<PIXI.Sprite, ClipStyle> {
|
|
|
51
51
|
outOutOfRange: import('../../../../index').OutOfRangeEnum;
|
|
52
52
|
property: string;
|
|
53
53
|
keyframes: {
|
|
54
|
-
time: number;
|
|
55
54
|
value: string | number;
|
|
55
|
+
time: number;
|
|
56
56
|
easing: import('../../../../index').EasingEnum;
|
|
57
57
|
space: import('../../../../index').AnimationSpaceEnum;
|
|
58
58
|
relativeProperty?: string | undefined;
|
|
@@ -71,8 +71,8 @@ export declare class CustomClip extends Clip<PIXI.Sprite, ClipStyle> {
|
|
|
71
71
|
outOutOfRange: import('../../../../index').OutOfRangeEnum;
|
|
72
72
|
property: string;
|
|
73
73
|
keyframes: {
|
|
74
|
-
time: number;
|
|
75
74
|
value: string | number;
|
|
75
|
+
time: number;
|
|
76
76
|
easing: import('../../../../index').EasingEnum;
|
|
77
77
|
space: import('../../../../index').AnimationSpaceEnum;
|
|
78
78
|
relativeProperty?: string | undefined;
|
|
@@ -91,8 +91,8 @@ export declare class CustomClip extends Clip<PIXI.Sprite, ClipStyle> {
|
|
|
91
91
|
outOutOfRange: import('../../../../index').OutOfRangeEnum;
|
|
92
92
|
property: string;
|
|
93
93
|
keyframes: {
|
|
94
|
-
time: number;
|
|
95
94
|
value: string | number;
|
|
95
|
+
time: number;
|
|
96
96
|
easing: import('../../../../index').EasingEnum;
|
|
97
97
|
space: import('../../../../index').AnimationSpaceEnum;
|
|
98
98
|
relativeProperty?: string | undefined;
|