@remotion/renderer 4.0.424 → 4.0.426
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/client.d.ts +500 -0
- package/dist/esm/client.mjs +1888 -534
- package/dist/esm/index.mjs +12 -7
- package/dist/index.d.ts +4 -1
- package/dist/options/browser-executable.d.ts +17 -0
- package/dist/options/browser-executable.js +36 -0
- package/dist/options/browser.d.ts +19 -0
- package/dist/options/browser.js +30 -0
- package/dist/options/bundle-cache.d.ts +16 -0
- package/dist/options/bundle-cache.js +34 -0
- package/dist/options/concurrency.d.ts +17 -0
- package/dist/options/concurrency.js +61 -0
- package/dist/options/config.d.ts +19 -0
- package/dist/options/config.js +29 -0
- package/dist/options/disable-web-security.d.ts +16 -0
- package/dist/options/disable-web-security.js +36 -0
- package/dist/options/env-file.d.ts +19 -0
- package/dist/options/env-file.js +38 -0
- package/dist/options/every-nth-frame.d.ts +16 -0
- package/dist/options/every-nth-frame.js +42 -0
- package/dist/options/experimental-client-side-rendering.js +2 -3
- package/dist/options/frames.d.ts +17 -0
- package/dist/options/frames.js +83 -0
- package/dist/options/ignore-certificate-errors.d.ts +16 -0
- package/dist/options/ignore-certificate-errors.js +36 -0
- package/dist/options/image-format-option.d.ts +18 -0
- package/dist/options/image-format-option.js +33 -0
- package/dist/options/image-sequence.d.ts +16 -0
- package/dist/options/image-sequence.js +30 -0
- package/dist/options/index.d.ts +499 -0
- package/dist/options/index.js +56 -0
- package/dist/options/no-open.d.ts +19 -0
- package/dist/options/no-open.js +30 -0
- package/dist/options/out-dir.d.ts +19 -0
- package/dist/options/out-dir.js +41 -0
- package/dist/options/override-duration.d.ts +19 -0
- package/dist/options/override-duration.js +46 -0
- package/dist/options/override-fps.d.ts +19 -0
- package/dist/options/override-fps.js +40 -0
- package/dist/options/override-height.d.ts +19 -0
- package/dist/options/override-height.js +40 -0
- package/dist/options/override-width.d.ts +19 -0
- package/dist/options/override-width.js +40 -0
- package/dist/options/package-manager.d.ts +19 -0
- package/dist/options/package-manager.js +47 -0
- package/dist/options/pixel-format.d.ts +16 -0
- package/dist/options/pixel-format.js +41 -0
- package/dist/options/port.d.ts +19 -0
- package/dist/options/port.js +36 -0
- package/dist/options/private-license-key.d.ts +15 -0
- package/dist/options/private-license-key.js +35 -0
- package/dist/options/props.d.ts +19 -0
- package/dist/options/props.js +33 -0
- package/dist/options/prores-profile.d.ts +20 -0
- package/dist/options/prores-profile.js +48 -0
- package/dist/options/rspack.d.ts +16 -0
- package/dist/options/rspack.js +31 -0
- package/dist/options/runs.d.ts +16 -0
- package/dist/options/runs.js +37 -0
- package/dist/options/still-frame.d.ts +19 -0
- package/dist/options/still-frame.js +51 -0
- package/dist/options/user-agent.d.ts +19 -0
- package/dist/options/user-agent.js +36 -0
- package/dist/options/version-flag.d.ts +19 -0
- package/dist/options/version-flag.js +29 -0
- package/dist/options/webpack-poll.d.ts +19 -0
- package/dist/options/webpack-poll.js +43 -0
- package/dist/prespawn-ffmpeg.d.ts +1 -0
- package/dist/prespawn-ffmpeg.js +4 -3
- package/dist/render-frames.d.ts +43 -3
- package/dist/render-media.d.ts +4 -2
- package/dist/render-media.js +4 -2
- package/dist/render-still.d.ts +1 -0
- package/dist/render-still.js +5 -1
- package/dist/select-composition.d.ts +25 -3
- package/package.json +14 -14
package/dist/client.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export { AvailableOptions, TypeOfOption } from './options';
|
|
2
2
|
export { HardwareAccelerationOption } from './options/hardware-acceleration';
|
|
3
|
+
export { ProResProfile } from './options/prores-profile';
|
|
3
4
|
export declare const BrowserSafeApis: {
|
|
4
5
|
getFileExtensionFromCodec: <T extends "aac" | "gif" | "h264" | "h264-mkv" | "h264-ts" | "h265" | "mp3" | "prores" | "vp8" | "vp9" | "wav">(codec: T, audioCodec: "aac" | "mp3" | "opus" | "pcm-16" | null) => import("./file-extensions").FileExtension;
|
|
5
6
|
validCodecs: readonly ["h264", "h265", "vp8", "vp9", "mp3", "aac", "wav", "prores", "h264-mkv", "h264-ts", "gif"];
|
|
@@ -242,6 +243,38 @@ export declare const BrowserSafeApis: {
|
|
|
242
243
|
type: "aac" | "mp3" | "opus" | "pcm-16";
|
|
243
244
|
id: "audio-codec";
|
|
244
245
|
};
|
|
246
|
+
browserExecutableOption: {
|
|
247
|
+
name: string;
|
|
248
|
+
cliFlag: "browser-executable";
|
|
249
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
250
|
+
ssrName: "browserExecutable";
|
|
251
|
+
docLink: string;
|
|
252
|
+
type: import("./browser-executable").BrowserExecutable;
|
|
253
|
+
getValue: ({ commandLine }: {
|
|
254
|
+
commandLine: Record<string, unknown>;
|
|
255
|
+
}) => {
|
|
256
|
+
source: string;
|
|
257
|
+
value: import("./browser-executable").BrowserExecutable;
|
|
258
|
+
};
|
|
259
|
+
setConfig: (value: import("./browser-executable").BrowserExecutable) => void;
|
|
260
|
+
id: "browser-executable";
|
|
261
|
+
};
|
|
262
|
+
concurrencyOption: {
|
|
263
|
+
name: string;
|
|
264
|
+
cliFlag: "concurrency";
|
|
265
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
266
|
+
ssrName: "concurrency";
|
|
267
|
+
docLink: string;
|
|
268
|
+
type: import(".").Concurrency;
|
|
269
|
+
getValue: ({ commandLine }: {
|
|
270
|
+
commandLine: Record<string, unknown>;
|
|
271
|
+
}) => {
|
|
272
|
+
source: string;
|
|
273
|
+
value: import(".").Concurrency;
|
|
274
|
+
};
|
|
275
|
+
setConfig: (value: import(".").Concurrency) => void;
|
|
276
|
+
id: "concurrency";
|
|
277
|
+
};
|
|
245
278
|
scaleOption: {
|
|
246
279
|
name: string;
|
|
247
280
|
cliFlag: "scale";
|
|
@@ -344,6 +377,22 @@ export declare const BrowserSafeApis: {
|
|
|
344
377
|
setConfig: (value: boolean) => void;
|
|
345
378
|
id: "enforce-audio-track";
|
|
346
379
|
};
|
|
380
|
+
everyNthFrameOption: {
|
|
381
|
+
name: string;
|
|
382
|
+
cliFlag: "every-nth-frame";
|
|
383
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
384
|
+
ssrName: "everyNthFrame";
|
|
385
|
+
docLink: string;
|
|
386
|
+
type: number;
|
|
387
|
+
getValue: ({ commandLine }: {
|
|
388
|
+
commandLine: Record<string, unknown>;
|
|
389
|
+
}) => {
|
|
390
|
+
source: string;
|
|
391
|
+
value: number;
|
|
392
|
+
};
|
|
393
|
+
setConfig: (value: number) => void;
|
|
394
|
+
id: "every-nth-frame";
|
|
395
|
+
};
|
|
347
396
|
mutedOption: {
|
|
348
397
|
name: string;
|
|
349
398
|
cliFlag: "muted";
|
|
@@ -466,6 +515,22 @@ export declare const BrowserSafeApis: {
|
|
|
466
515
|
setConfig: (value: import(".").DeleteAfter | null) => void;
|
|
467
516
|
id: "delete-after";
|
|
468
517
|
};
|
|
518
|
+
disableWebSecurityOption: {
|
|
519
|
+
name: string;
|
|
520
|
+
cliFlag: "disable-web-security";
|
|
521
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
522
|
+
ssrName: "disableWebSecurity";
|
|
523
|
+
docLink: string;
|
|
524
|
+
type: boolean;
|
|
525
|
+
getValue: ({ commandLine }: {
|
|
526
|
+
commandLine: Record<string, unknown>;
|
|
527
|
+
}) => {
|
|
528
|
+
source: string;
|
|
529
|
+
value: boolean;
|
|
530
|
+
};
|
|
531
|
+
setConfig: (value: boolean) => void;
|
|
532
|
+
id: "disable-web-security";
|
|
533
|
+
};
|
|
469
534
|
disallowParallelEncodingOption: {
|
|
470
535
|
name: string;
|
|
471
536
|
cliFlag: "disallow-parallel-encoding";
|
|
@@ -638,6 +703,57 @@ export declare const BrowserSafeApis: {
|
|
|
638
703
|
setConfig: (should: boolean) => void;
|
|
639
704
|
id: "repro";
|
|
640
705
|
};
|
|
706
|
+
runsOption: {
|
|
707
|
+
name: string;
|
|
708
|
+
cliFlag: "runs";
|
|
709
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
710
|
+
ssrName: null;
|
|
711
|
+
docLink: string;
|
|
712
|
+
type: number;
|
|
713
|
+
getValue: ({ commandLine }: {
|
|
714
|
+
commandLine: Record<string, unknown>;
|
|
715
|
+
}) => {
|
|
716
|
+
value: number;
|
|
717
|
+
source: string;
|
|
718
|
+
};
|
|
719
|
+
setConfig: (value: number) => void;
|
|
720
|
+
id: "runs";
|
|
721
|
+
};
|
|
722
|
+
noOpenOption: {
|
|
723
|
+
name: string;
|
|
724
|
+
cliFlag: "no-open";
|
|
725
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
726
|
+
ssrName: null;
|
|
727
|
+
docLink: string;
|
|
728
|
+
type: boolean;
|
|
729
|
+
getValue: ({ commandLine }: {
|
|
730
|
+
commandLine: Record<string, unknown>;
|
|
731
|
+
}) => {
|
|
732
|
+
value: true;
|
|
733
|
+
source: string;
|
|
734
|
+
} | {
|
|
735
|
+
value: false;
|
|
736
|
+
source: string;
|
|
737
|
+
};
|
|
738
|
+
setConfig: (shouldOpen: boolean) => void;
|
|
739
|
+
id: "no-open";
|
|
740
|
+
};
|
|
741
|
+
pixelFormatOption: {
|
|
742
|
+
name: string;
|
|
743
|
+
cliFlag: "pixel-format";
|
|
744
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
745
|
+
ssrName: "pixelFormat";
|
|
746
|
+
docLink: string;
|
|
747
|
+
type: "yuv420p" | "yuv420p10le" | "yuv422p" | "yuv422p10le" | "yuv444p" | "yuv444p10le" | "yuva420p" | "yuva444p10le";
|
|
748
|
+
getValue: ({ commandLine }: {
|
|
749
|
+
commandLine: Record<string, unknown>;
|
|
750
|
+
}) => {
|
|
751
|
+
source: string;
|
|
752
|
+
value: "yuv420p" | "yuv420p10le" | "yuv422p" | "yuv422p10le" | "yuv444p" | "yuv444p10le" | "yuva420p" | "yuva444p10le";
|
|
753
|
+
};
|
|
754
|
+
setConfig: (value: "yuv420p" | "yuv420p10le" | "yuv422p" | "yuv422p10le" | "yuv444p" | "yuv444p10le" | "yuva420p" | "yuva444p10le") => void;
|
|
755
|
+
id: "pixel-format";
|
|
756
|
+
};
|
|
641
757
|
preferLosslessOption: {
|
|
642
758
|
name: string;
|
|
643
759
|
cliFlag: "prefer-lossless";
|
|
@@ -657,6 +773,25 @@ export declare const BrowserSafeApis: {
|
|
|
657
773
|
setConfig: (val: boolean) => void;
|
|
658
774
|
id: "prefer-lossless";
|
|
659
775
|
};
|
|
776
|
+
proResProfileOption: {
|
|
777
|
+
name: string;
|
|
778
|
+
cliFlag: "prores-profile";
|
|
779
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
780
|
+
ssrName: "proResProfile";
|
|
781
|
+
docLink: string;
|
|
782
|
+
type: import("./client").ProResProfile | undefined;
|
|
783
|
+
getValue: ({ commandLine }: {
|
|
784
|
+
commandLine: Record<string, unknown>;
|
|
785
|
+
}) => {
|
|
786
|
+
source: string;
|
|
787
|
+
value: import("./client").ProResProfile;
|
|
788
|
+
} | {
|
|
789
|
+
source: string;
|
|
790
|
+
value: undefined;
|
|
791
|
+
};
|
|
792
|
+
setConfig: (value: import("./client").ProResProfile | undefined) => void;
|
|
793
|
+
id: "prores-profile";
|
|
794
|
+
};
|
|
660
795
|
x264Option: {
|
|
661
796
|
name: string;
|
|
662
797
|
cliFlag: "x264-preset";
|
|
@@ -992,6 +1127,22 @@ export declare const BrowserSafeApis: {
|
|
|
992
1127
|
setConfig(value: boolean): void;
|
|
993
1128
|
id: "cross-site-isolation";
|
|
994
1129
|
};
|
|
1130
|
+
ignoreCertificateErrorsOption: {
|
|
1131
|
+
name: string;
|
|
1132
|
+
cliFlag: "ignore-certificate-errors";
|
|
1133
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
1134
|
+
ssrName: "ignoreCertificateErrors";
|
|
1135
|
+
docLink: string;
|
|
1136
|
+
type: boolean;
|
|
1137
|
+
getValue: ({ commandLine }: {
|
|
1138
|
+
commandLine: Record<string, unknown>;
|
|
1139
|
+
}) => {
|
|
1140
|
+
source: string;
|
|
1141
|
+
value: boolean;
|
|
1142
|
+
};
|
|
1143
|
+
setConfig: (value: boolean) => void;
|
|
1144
|
+
id: "ignore-certificate-errors";
|
|
1145
|
+
};
|
|
995
1146
|
imageSequencePatternOption: {
|
|
996
1147
|
name: string;
|
|
997
1148
|
cliFlag: "image-sequence-pattern";
|
|
@@ -1123,6 +1274,22 @@ export declare const BrowserSafeApis: {
|
|
|
1123
1274
|
setConfig(value: boolean): void;
|
|
1124
1275
|
id: "disable-keyboard-shortcuts";
|
|
1125
1276
|
};
|
|
1277
|
+
framesOption: {
|
|
1278
|
+
name: string;
|
|
1279
|
+
cliFlag: "frames";
|
|
1280
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
1281
|
+
ssrName: "frameRange";
|
|
1282
|
+
docLink: string;
|
|
1283
|
+
type: import("./frame-range").FrameRange | null;
|
|
1284
|
+
getValue: ({ commandLine }: {
|
|
1285
|
+
commandLine: Record<string, unknown>;
|
|
1286
|
+
}) => {
|
|
1287
|
+
source: string;
|
|
1288
|
+
value: import("./frame-range").FrameRange | null;
|
|
1289
|
+
};
|
|
1290
|
+
setConfig: (value: import("./frame-range").FrameRange | null) => void;
|
|
1291
|
+
id: "frames";
|
|
1292
|
+
};
|
|
1126
1293
|
forceNewStudioOption: {
|
|
1127
1294
|
name: string;
|
|
1128
1295
|
cliFlag: "force-new";
|
|
@@ -1190,6 +1357,25 @@ export declare const BrowserSafeApis: {
|
|
|
1190
1357
|
setConfig: (value: "jpeg" | "pdf" | "png" | "webp" | null) => void;
|
|
1191
1358
|
id: string;
|
|
1192
1359
|
};
|
|
1360
|
+
userAgentOption: {
|
|
1361
|
+
name: string;
|
|
1362
|
+
cliFlag: "user-agent";
|
|
1363
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
1364
|
+
ssrName: "userAgent";
|
|
1365
|
+
docLink: string;
|
|
1366
|
+
type: string | null;
|
|
1367
|
+
getValue: ({ commandLine }: {
|
|
1368
|
+
commandLine: Record<string, unknown>;
|
|
1369
|
+
}) => {
|
|
1370
|
+
source: string;
|
|
1371
|
+
value: string;
|
|
1372
|
+
} | {
|
|
1373
|
+
source: string;
|
|
1374
|
+
value: null;
|
|
1375
|
+
};
|
|
1376
|
+
setConfig: (value: string | null) => void;
|
|
1377
|
+
id: "user-agent";
|
|
1378
|
+
};
|
|
1193
1379
|
videoImageFormatOption: {
|
|
1194
1380
|
name: string;
|
|
1195
1381
|
cliFlag: "image-format";
|
|
@@ -1209,6 +1395,320 @@ export declare const BrowserSafeApis: {
|
|
|
1209
1395
|
setConfig: (value: "jpeg" | "none" | "png" | null) => void;
|
|
1210
1396
|
id: string;
|
|
1211
1397
|
};
|
|
1398
|
+
overrideHeightOption: {
|
|
1399
|
+
name: string;
|
|
1400
|
+
cliFlag: "height";
|
|
1401
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
1402
|
+
ssrName: null;
|
|
1403
|
+
docLink: string;
|
|
1404
|
+
type: number | null;
|
|
1405
|
+
getValue: ({ commandLine }: {
|
|
1406
|
+
commandLine: Record<string, unknown>;
|
|
1407
|
+
}) => {
|
|
1408
|
+
source: string;
|
|
1409
|
+
value: number;
|
|
1410
|
+
} | {
|
|
1411
|
+
source: string;
|
|
1412
|
+
value: null;
|
|
1413
|
+
};
|
|
1414
|
+
setConfig: (height: number | null) => void;
|
|
1415
|
+
id: "height";
|
|
1416
|
+
};
|
|
1417
|
+
overrideWidthOption: {
|
|
1418
|
+
name: string;
|
|
1419
|
+
cliFlag: "width";
|
|
1420
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
1421
|
+
ssrName: null;
|
|
1422
|
+
docLink: string;
|
|
1423
|
+
type: number | null;
|
|
1424
|
+
getValue: ({ commandLine }: {
|
|
1425
|
+
commandLine: Record<string, unknown>;
|
|
1426
|
+
}) => {
|
|
1427
|
+
source: string;
|
|
1428
|
+
value: number;
|
|
1429
|
+
} | {
|
|
1430
|
+
source: string;
|
|
1431
|
+
value: null;
|
|
1432
|
+
};
|
|
1433
|
+
setConfig: (width: number | null) => void;
|
|
1434
|
+
id: "width";
|
|
1435
|
+
};
|
|
1436
|
+
overrideFpsOption: {
|
|
1437
|
+
name: string;
|
|
1438
|
+
cliFlag: "fps";
|
|
1439
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
1440
|
+
ssrName: null;
|
|
1441
|
+
docLink: string;
|
|
1442
|
+
type: number | null;
|
|
1443
|
+
getValue: ({ commandLine }: {
|
|
1444
|
+
commandLine: Record<string, unknown>;
|
|
1445
|
+
}) => {
|
|
1446
|
+
source: string;
|
|
1447
|
+
value: number;
|
|
1448
|
+
} | {
|
|
1449
|
+
source: string;
|
|
1450
|
+
value: null;
|
|
1451
|
+
};
|
|
1452
|
+
setConfig: (fps: number | null) => void;
|
|
1453
|
+
id: "fps";
|
|
1454
|
+
};
|
|
1455
|
+
overrideDurationOption: {
|
|
1456
|
+
name: string;
|
|
1457
|
+
cliFlag: "duration";
|
|
1458
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
1459
|
+
ssrName: null;
|
|
1460
|
+
docLink: string;
|
|
1461
|
+
type: number | null;
|
|
1462
|
+
getValue: ({ commandLine }: {
|
|
1463
|
+
commandLine: Record<string, unknown>;
|
|
1464
|
+
}) => {
|
|
1465
|
+
source: string;
|
|
1466
|
+
value: number;
|
|
1467
|
+
} | {
|
|
1468
|
+
source: string;
|
|
1469
|
+
value: null;
|
|
1470
|
+
};
|
|
1471
|
+
setConfig: (duration: number | null) => void;
|
|
1472
|
+
id: "duration";
|
|
1473
|
+
};
|
|
1474
|
+
rspackOption: {
|
|
1475
|
+
name: string;
|
|
1476
|
+
cliFlag: "experimental-rspack";
|
|
1477
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
1478
|
+
ssrName: null;
|
|
1479
|
+
docLink: null;
|
|
1480
|
+
type: boolean;
|
|
1481
|
+
getValue: ({ commandLine }: {
|
|
1482
|
+
commandLine: Record<string, unknown>;
|
|
1483
|
+
}) => {
|
|
1484
|
+
value: boolean;
|
|
1485
|
+
source: string;
|
|
1486
|
+
};
|
|
1487
|
+
setConfig(value: boolean): void;
|
|
1488
|
+
id: "experimental-rspack";
|
|
1489
|
+
};
|
|
1490
|
+
outDirOption: {
|
|
1491
|
+
name: string;
|
|
1492
|
+
cliFlag: "out-dir";
|
|
1493
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
1494
|
+
ssrName: "outDir";
|
|
1495
|
+
docLink: string;
|
|
1496
|
+
getValue: ({ commandLine }: {
|
|
1497
|
+
commandLine: Record<string, unknown>;
|
|
1498
|
+
}) => {
|
|
1499
|
+
source: string;
|
|
1500
|
+
value: string;
|
|
1501
|
+
} | {
|
|
1502
|
+
source: string;
|
|
1503
|
+
value: null;
|
|
1504
|
+
};
|
|
1505
|
+
setConfig: (value: string | null) => void;
|
|
1506
|
+
type: string | null;
|
|
1507
|
+
id: "out-dir";
|
|
1508
|
+
};
|
|
1509
|
+
packageManagerOption: {
|
|
1510
|
+
name: string;
|
|
1511
|
+
cliFlag: "package-manager";
|
|
1512
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
1513
|
+
ssrName: "packageManager";
|
|
1514
|
+
docLink: string;
|
|
1515
|
+
getValue: ({ commandLine }: {
|
|
1516
|
+
commandLine: Record<string, unknown>;
|
|
1517
|
+
}) => {
|
|
1518
|
+
source: string;
|
|
1519
|
+
value: string;
|
|
1520
|
+
} | {
|
|
1521
|
+
source: string;
|
|
1522
|
+
value: null;
|
|
1523
|
+
};
|
|
1524
|
+
setConfig: (value: string | null) => void;
|
|
1525
|
+
type: string | null;
|
|
1526
|
+
id: "package-manager";
|
|
1527
|
+
};
|
|
1528
|
+
webpackPollOption: {
|
|
1529
|
+
name: string;
|
|
1530
|
+
cliFlag: "webpack-poll";
|
|
1531
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
1532
|
+
ssrName: null;
|
|
1533
|
+
docLink: string;
|
|
1534
|
+
getValue: ({ commandLine }: {
|
|
1535
|
+
commandLine: Record<string, unknown>;
|
|
1536
|
+
}) => {
|
|
1537
|
+
source: string;
|
|
1538
|
+
value: number;
|
|
1539
|
+
} | {
|
|
1540
|
+
source: string;
|
|
1541
|
+
value: null;
|
|
1542
|
+
};
|
|
1543
|
+
setConfig: (value: number | null) => void;
|
|
1544
|
+
type: number | null;
|
|
1545
|
+
id: "webpack-poll";
|
|
1546
|
+
};
|
|
1547
|
+
stillFrameOption: {
|
|
1548
|
+
name: string;
|
|
1549
|
+
cliFlag: "frame";
|
|
1550
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
1551
|
+
ssrName: "frame";
|
|
1552
|
+
docLink: string;
|
|
1553
|
+
getValue: ({ commandLine }: {
|
|
1554
|
+
commandLine: Record<string, unknown>;
|
|
1555
|
+
}) => {
|
|
1556
|
+
source: string;
|
|
1557
|
+
value: number;
|
|
1558
|
+
} | {
|
|
1559
|
+
source: string;
|
|
1560
|
+
value: null;
|
|
1561
|
+
};
|
|
1562
|
+
setConfig: (value: number | null) => void;
|
|
1563
|
+
type: number | null;
|
|
1564
|
+
id: "frame";
|
|
1565
|
+
};
|
|
1566
|
+
imageSequenceOption: {
|
|
1567
|
+
name: string;
|
|
1568
|
+
cliFlag: "sequence";
|
|
1569
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
1570
|
+
ssrName: null;
|
|
1571
|
+
docLink: string;
|
|
1572
|
+
getValue: ({ commandLine }: {
|
|
1573
|
+
commandLine: Record<string, unknown>;
|
|
1574
|
+
}) => {
|
|
1575
|
+
source: string;
|
|
1576
|
+
value: boolean;
|
|
1577
|
+
};
|
|
1578
|
+
setConfig: (value: boolean) => void;
|
|
1579
|
+
type: boolean;
|
|
1580
|
+
id: "sequence";
|
|
1581
|
+
};
|
|
1582
|
+
versionFlagOption: {
|
|
1583
|
+
name: string;
|
|
1584
|
+
cliFlag: "version";
|
|
1585
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
1586
|
+
ssrName: null;
|
|
1587
|
+
docLink: string;
|
|
1588
|
+
getValue: ({ commandLine }: {
|
|
1589
|
+
commandLine: Record<string, unknown>;
|
|
1590
|
+
}) => {
|
|
1591
|
+
source: string;
|
|
1592
|
+
value: string;
|
|
1593
|
+
} | {
|
|
1594
|
+
source: string;
|
|
1595
|
+
value: null;
|
|
1596
|
+
};
|
|
1597
|
+
setConfig: () => never;
|
|
1598
|
+
type: string | null;
|
|
1599
|
+
id: "version";
|
|
1600
|
+
};
|
|
1601
|
+
bundleCacheOption: {
|
|
1602
|
+
name: string;
|
|
1603
|
+
cliFlag: "bundle-cache";
|
|
1604
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
1605
|
+
ssrName: null;
|
|
1606
|
+
docLink: string;
|
|
1607
|
+
getValue: ({ commandLine }: {
|
|
1608
|
+
commandLine: Record<string, unknown>;
|
|
1609
|
+
}) => {
|
|
1610
|
+
source: string;
|
|
1611
|
+
value: boolean;
|
|
1612
|
+
};
|
|
1613
|
+
setConfig: (value: boolean) => void;
|
|
1614
|
+
type: boolean;
|
|
1615
|
+
id: "bundle-cache";
|
|
1616
|
+
};
|
|
1617
|
+
envFileOption: {
|
|
1618
|
+
name: string;
|
|
1619
|
+
cliFlag: "env-file";
|
|
1620
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
1621
|
+
ssrName: null;
|
|
1622
|
+
docLink: string;
|
|
1623
|
+
getValue: ({ commandLine }: {
|
|
1624
|
+
commandLine: Record<string, unknown>;
|
|
1625
|
+
}) => {
|
|
1626
|
+
source: string;
|
|
1627
|
+
value: string;
|
|
1628
|
+
} | {
|
|
1629
|
+
source: string;
|
|
1630
|
+
value: null;
|
|
1631
|
+
};
|
|
1632
|
+
setConfig: (value: string | null) => void;
|
|
1633
|
+
type: string | null;
|
|
1634
|
+
id: "env-file";
|
|
1635
|
+
};
|
|
1636
|
+
portOption: {
|
|
1637
|
+
name: string;
|
|
1638
|
+
cliFlag: "port";
|
|
1639
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
1640
|
+
ssrName: null;
|
|
1641
|
+
docLink: string;
|
|
1642
|
+
getValue: ({ commandLine }: {
|
|
1643
|
+
commandLine: Record<string, unknown>;
|
|
1644
|
+
}) => {
|
|
1645
|
+
source: string;
|
|
1646
|
+
value: number;
|
|
1647
|
+
} | {
|
|
1648
|
+
source: string;
|
|
1649
|
+
value: null;
|
|
1650
|
+
};
|
|
1651
|
+
setConfig: (value: number | null) => void;
|
|
1652
|
+
type: number | null;
|
|
1653
|
+
id: "port";
|
|
1654
|
+
};
|
|
1655
|
+
propsOption: {
|
|
1656
|
+
name: string;
|
|
1657
|
+
cliFlag: "props";
|
|
1658
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
1659
|
+
ssrName: null;
|
|
1660
|
+
docLink: string;
|
|
1661
|
+
getValue: ({ commandLine }: {
|
|
1662
|
+
commandLine: Record<string, unknown>;
|
|
1663
|
+
}) => {
|
|
1664
|
+
source: string;
|
|
1665
|
+
value: string;
|
|
1666
|
+
} | {
|
|
1667
|
+
source: string;
|
|
1668
|
+
value: null;
|
|
1669
|
+
};
|
|
1670
|
+
setConfig: () => never;
|
|
1671
|
+
type: string | null;
|
|
1672
|
+
id: "props";
|
|
1673
|
+
};
|
|
1674
|
+
configOption: {
|
|
1675
|
+
name: string;
|
|
1676
|
+
cliFlag: "config";
|
|
1677
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
1678
|
+
ssrName: null;
|
|
1679
|
+
docLink: string;
|
|
1680
|
+
getValue: ({ commandLine }: {
|
|
1681
|
+
commandLine: Record<string, unknown>;
|
|
1682
|
+
}) => {
|
|
1683
|
+
source: string;
|
|
1684
|
+
value: string;
|
|
1685
|
+
} | {
|
|
1686
|
+
source: string;
|
|
1687
|
+
value: null;
|
|
1688
|
+
};
|
|
1689
|
+
setConfig: () => never;
|
|
1690
|
+
type: string | null;
|
|
1691
|
+
id: "config";
|
|
1692
|
+
};
|
|
1693
|
+
browserOption: {
|
|
1694
|
+
name: string;
|
|
1695
|
+
cliFlag: "browser";
|
|
1696
|
+
description: () => import("react/jsx-runtime").JSX.Element;
|
|
1697
|
+
ssrName: null;
|
|
1698
|
+
docLink: string;
|
|
1699
|
+
getValue: ({ commandLine }: {
|
|
1700
|
+
commandLine: Record<string, unknown>;
|
|
1701
|
+
}) => {
|
|
1702
|
+
source: string;
|
|
1703
|
+
value: string;
|
|
1704
|
+
} | {
|
|
1705
|
+
source: string;
|
|
1706
|
+
value: null;
|
|
1707
|
+
};
|
|
1708
|
+
setConfig: () => never;
|
|
1709
|
+
type: string | null;
|
|
1710
|
+
id: "browser";
|
|
1711
|
+
};
|
|
1212
1712
|
};
|
|
1213
1713
|
validColorSpaces: readonly ["default", "bt601", "bt709", "bt2020-ncl"];
|
|
1214
1714
|
optionsMap: {
|