@soga/types 0.8.3 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +151 -346
- package/dist/index.d.ts +151 -346
- package/dist/index.js +1 -172
- package/dist/index.mjs +1 -135
- package/package.json +6 -3
package/dist/index.d.mts
CHANGED
|
@@ -87,90 +87,83 @@ interface AliHostDetail extends CommonHostDetail {
|
|
|
87
87
|
type HostDetail = BaiduHostDetail | AliHostDetail;
|
|
88
88
|
type HostListItem = HostDetail;
|
|
89
89
|
|
|
90
|
-
type
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
90
|
+
type ManifestInputMetaInfo = {
|
|
91
|
+
btime: number;
|
|
92
|
+
ctime: number;
|
|
93
|
+
mtime: number;
|
|
94
|
+
file: string;
|
|
95
|
+
size: number;
|
|
96
|
+
hostsize: number;
|
|
96
97
|
};
|
|
97
|
-
type
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
98
|
+
type ManifestAudioMetaItem = {
|
|
99
|
+
channels: number;
|
|
100
|
+
codec: string;
|
|
101
|
+
codec_name: string;
|
|
102
|
+
duration: number;
|
|
103
|
+
lossless: boolean;
|
|
104
|
+
high?: {
|
|
105
|
+
channels: number;
|
|
106
|
+
codec: string;
|
|
107
|
+
codec_name: string;
|
|
108
|
+
lossless: boolean;
|
|
109
|
+
};
|
|
104
110
|
};
|
|
105
|
-
type
|
|
106
|
-
|
|
111
|
+
type ManifestVideoMetaItem = {
|
|
112
|
+
bitdepth: number;
|
|
113
|
+
codec: string;
|
|
114
|
+
codec_name: string;
|
|
115
|
+
duration: number;
|
|
116
|
+
framerate: number;
|
|
117
|
+
height: number;
|
|
118
|
+
label: string;
|
|
119
|
+
width: number;
|
|
120
|
+
};
|
|
121
|
+
type ManifestImgMetaInfo = {
|
|
122
|
+
width: number;
|
|
123
|
+
height: number;
|
|
107
124
|
size: number;
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
type ManifestSourceType = {
|
|
112
|
-
head: string;
|
|
113
|
-
parts: string[];
|
|
125
|
+
t_width: number;
|
|
126
|
+
t_height: number;
|
|
127
|
+
t_size: number;
|
|
114
128
|
};
|
|
115
|
-
type
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
129
|
+
type ManifestSourceInfo = {
|
|
130
|
+
head: string;
|
|
131
|
+
download: {
|
|
132
|
+
id: string;
|
|
119
133
|
file: string;
|
|
120
134
|
start: number;
|
|
121
135
|
end: number;
|
|
122
136
|
};
|
|
123
|
-
parts: string[];
|
|
124
137
|
};
|
|
125
|
-
type
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
};
|
|
138
|
+
type ManifestMediaInfo = {
|
|
139
|
+
audios: ManifestAudioItem[];
|
|
140
|
+
videos: ManifestVideoItem[];
|
|
141
|
+
subtitles: ManifestSubtitleItem[];
|
|
142
|
+
thumbnail: ManifestThumbnailInfo;
|
|
143
|
+
cover: ManifestCoverInfo;
|
|
144
|
+
};
|
|
145
|
+
type ManifestImgInfo = {
|
|
134
146
|
preview: {
|
|
135
147
|
file: string;
|
|
136
148
|
start: number;
|
|
137
149
|
end: number;
|
|
138
150
|
}[];
|
|
139
|
-
parts: string[];
|
|
140
|
-
};
|
|
141
|
-
type ManifestMetaType = {
|
|
142
|
-
btime: number;
|
|
143
|
-
ctime: number;
|
|
144
|
-
mtime: number;
|
|
145
|
-
filename: string;
|
|
146
|
-
filesize: number;
|
|
147
|
-
host_size: number;
|
|
148
|
-
};
|
|
149
|
-
type ManifestCoverInfo = {
|
|
150
|
-
file: string;
|
|
151
|
-
size: number;
|
|
152
|
-
width: number;
|
|
153
|
-
height: number;
|
|
154
|
-
start: number;
|
|
155
|
-
end: number;
|
|
156
151
|
};
|
|
157
|
-
type
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
source?: {
|
|
152
|
+
type ManifestTxtInfo = {
|
|
153
|
+
pad: number;
|
|
154
|
+
pages: number;
|
|
155
|
+
entrance: {
|
|
156
|
+
id: string;
|
|
157
|
+
file: string;
|
|
158
|
+
start: number;
|
|
165
159
|
end: number;
|
|
160
|
+
};
|
|
161
|
+
cache: {
|
|
162
|
+
id: string;
|
|
166
163
|
file: string;
|
|
167
|
-
size: number;
|
|
168
164
|
start: number;
|
|
169
|
-
|
|
165
|
+
end: number;
|
|
170
166
|
};
|
|
171
|
-
start: number;
|
|
172
|
-
name: string;
|
|
173
|
-
title: string;
|
|
174
167
|
};
|
|
175
168
|
type ManifestAudioItem = {
|
|
176
169
|
average_band: number;
|
|
@@ -187,27 +180,6 @@ type ManifestAudioItem = {
|
|
|
187
180
|
hash?: string;
|
|
188
181
|
high?: ManifestAudioItem;
|
|
189
182
|
};
|
|
190
|
-
type ManifestThumbnailInfo = {
|
|
191
|
-
col: number;
|
|
192
|
-
end: number;
|
|
193
|
-
file: string;
|
|
194
|
-
height: number;
|
|
195
|
-
row: number;
|
|
196
|
-
size: number;
|
|
197
|
-
start: number;
|
|
198
|
-
width: number;
|
|
199
|
-
};
|
|
200
|
-
type ManifestThumbnailItem = {
|
|
201
|
-
e: number;
|
|
202
|
-
et: number;
|
|
203
|
-
file: string;
|
|
204
|
-
h: number;
|
|
205
|
-
s: number;
|
|
206
|
-
st: number;
|
|
207
|
-
w: number;
|
|
208
|
-
x: number;
|
|
209
|
-
y: number;
|
|
210
|
-
};
|
|
211
183
|
type ManifestVideoItem = {
|
|
212
184
|
average_band: number;
|
|
213
185
|
band: number;
|
|
@@ -224,53 +196,85 @@ type ManifestVideoItem = {
|
|
|
224
196
|
width: number;
|
|
225
197
|
hash?: string;
|
|
226
198
|
};
|
|
227
|
-
type
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
199
|
+
type ManifestSubtitleItem = {
|
|
200
|
+
uuid: string;
|
|
201
|
+
builtin: boolean;
|
|
202
|
+
end: number;
|
|
203
|
+
file: string;
|
|
204
|
+
lang: string;
|
|
205
|
+
size: number;
|
|
206
|
+
source?: {
|
|
207
|
+
end: number;
|
|
208
|
+
file: string;
|
|
209
|
+
size: number;
|
|
210
|
+
start: number;
|
|
211
|
+
ext: string;
|
|
212
|
+
};
|
|
213
|
+
start: number;
|
|
214
|
+
name: string;
|
|
215
|
+
title: string;
|
|
233
216
|
};
|
|
234
|
-
type
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
duration: number;
|
|
239
|
-
framerate: number;
|
|
217
|
+
type ManifestThumbnailInfo = {
|
|
218
|
+
col: number;
|
|
219
|
+
end: number;
|
|
220
|
+
file: string;
|
|
240
221
|
height: number;
|
|
241
|
-
|
|
222
|
+
row: number;
|
|
223
|
+
size: number;
|
|
224
|
+
start: number;
|
|
242
225
|
width: number;
|
|
243
226
|
};
|
|
244
|
-
type
|
|
245
|
-
|
|
246
|
-
texts: ManifestTextItem[];
|
|
247
|
-
audios: ManifestAudioItem[];
|
|
248
|
-
videos: ManifestVideoItem[];
|
|
249
|
-
thumbnail: ManifestThumbnailInfo;
|
|
250
|
-
audio_meta: ManifestAudioMetaInfo;
|
|
251
|
-
video_meta: ManifestVideoMetaInfo;
|
|
252
|
-
parts: string[];
|
|
253
|
-
};
|
|
254
|
-
type ManifestAffixItem = {
|
|
255
|
-
filename: string;
|
|
256
|
-
head: string;
|
|
227
|
+
type ManifestCoverInfo = {
|
|
228
|
+
file: string;
|
|
257
229
|
size: number;
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
230
|
+
width: number;
|
|
231
|
+
height: number;
|
|
232
|
+
start: number;
|
|
233
|
+
end: number;
|
|
234
|
+
};
|
|
235
|
+
type ManifestBaiduInfo = {
|
|
236
|
+
host_id: number;
|
|
237
|
+
files: Record<string, {
|
|
238
|
+
fs_id: number;
|
|
239
|
+
size: number;
|
|
240
|
+
md5: string;
|
|
241
|
+
md4: string;
|
|
242
|
+
preview: boolean;
|
|
243
|
+
source: boolean;
|
|
244
|
+
}>;
|
|
245
|
+
host_size: number;
|
|
246
|
+
source?: ManifestSourceInfo;
|
|
247
|
+
media?: ManifestMediaInfo;
|
|
248
|
+
img?: ManifestImgInfo;
|
|
249
|
+
txt?: ManifestTxtInfo;
|
|
250
|
+
};
|
|
251
|
+
type ManifestAliInfo = {
|
|
252
|
+
host_id: number;
|
|
253
|
+
drive_id: string;
|
|
254
|
+
files: Record<string, {
|
|
255
|
+
file_id: string;
|
|
256
|
+
size: number;
|
|
257
|
+
sha1: string;
|
|
258
|
+
md5: string;
|
|
259
|
+
preview: boolean;
|
|
260
|
+
source: boolean;
|
|
261
|
+
}>;
|
|
262
|
+
host_size: number;
|
|
263
|
+
source?: ManifestSourceInfo;
|
|
264
|
+
media?: ManifestMediaInfo;
|
|
265
|
+
img?: ManifestImgInfo;
|
|
266
|
+
txt?: ManifestTxtInfo;
|
|
267
|
+
};
|
|
268
|
+
type ManifestMetaInfo = {
|
|
269
|
+
file: ManifestInputMetaInfo;
|
|
270
|
+
audios?: ManifestAudioMetaItem[];
|
|
271
|
+
videos?: ManifestVideoMetaItem[];
|
|
272
|
+
img?: ManifestImgMetaInfo;
|
|
263
273
|
};
|
|
264
274
|
type Manifest = {
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
source?: ManifestSourceType;
|
|
269
|
-
img?: ManifestImgType;
|
|
270
|
-
media?: ManifestMediaType;
|
|
271
|
-
txt?: ManifestTxtType;
|
|
272
|
-
affix?: ManifestAffixItem[];
|
|
273
|
-
meta: ManifestMetaType;
|
|
275
|
+
meta: ManifestMetaInfo;
|
|
276
|
+
baidu: ManifestBaiduInfo;
|
|
277
|
+
ali: ManifestAliInfo;
|
|
274
278
|
};
|
|
275
279
|
|
|
276
280
|
declare enum RecordType {
|
|
@@ -402,176 +406,6 @@ type CloudInfoField = {
|
|
|
402
406
|
};
|
|
403
407
|
};
|
|
404
408
|
|
|
405
|
-
declare enum UploadProcessStep {
|
|
406
|
-
prepare = "PREPARE",
|
|
407
|
-
separate_video = "SEPARATE_VIDEO",
|
|
408
|
-
separate_audio = "SEPARATE_AUDIO",
|
|
409
|
-
separate_text = "SEPARATE_TEXT",
|
|
410
|
-
transcode_video = "TRANSCODE_VIDEO",
|
|
411
|
-
transcode_audio = "TRANSCODE_AUDIO",
|
|
412
|
-
transcode_thumbnail = "TRANSCODE_THUMBNAIL",
|
|
413
|
-
transcode_source = "TRANSCODE_SOURCE",
|
|
414
|
-
transcode_txt = "TRANSCODE_TXT",
|
|
415
|
-
transcode_img = "TRANSCODE_IMG",
|
|
416
|
-
transcode_affix = "TRANSCODE_AFFIX",
|
|
417
|
-
group_media = "GROUP_MEDIA",
|
|
418
|
-
upload_baidu = "UPLOAD_BAIDU",
|
|
419
|
-
upload_ali = "UPLOAD_ALI",
|
|
420
|
-
end = "END"
|
|
421
|
-
}
|
|
422
|
-
type UploadPrepareData = Partial<Record<UploadProcessStep, {
|
|
423
|
-
weight: number;
|
|
424
|
-
percent: number;
|
|
425
|
-
}>>;
|
|
426
|
-
type UploadPrepareOptions = {
|
|
427
|
-
keep_preview?: boolean;
|
|
428
|
-
keep_source?: boolean;
|
|
429
|
-
};
|
|
430
|
-
type PrepareResult = {
|
|
431
|
-
options: UploadPrepareOptions;
|
|
432
|
-
data: UploadPrepareData;
|
|
433
|
-
};
|
|
434
|
-
type GroupFileInfo = {
|
|
435
|
-
file: string;
|
|
436
|
-
size: number;
|
|
437
|
-
start: number;
|
|
438
|
-
end: number;
|
|
439
|
-
hash?: string;
|
|
440
|
-
};
|
|
441
|
-
type MediaGroupQualityAudioItem = {
|
|
442
|
-
average_band: number;
|
|
443
|
-
band: number;
|
|
444
|
-
channels: number;
|
|
445
|
-
codec: string;
|
|
446
|
-
codec_name: string;
|
|
447
|
-
language: string;
|
|
448
|
-
order: number;
|
|
449
|
-
} & GroupFileInfo;
|
|
450
|
-
type MediaGroupAudioItem = MediaGroupQualityAudioItem & {
|
|
451
|
-
high?: MediaGroupQualityAudioItem;
|
|
452
|
-
};
|
|
453
|
-
type MediaGroupVideoItem = {
|
|
454
|
-
label: string;
|
|
455
|
-
average_band: number;
|
|
456
|
-
band: number;
|
|
457
|
-
codec: string;
|
|
458
|
-
codec_name: string;
|
|
459
|
-
framerate: number;
|
|
460
|
-
bitdepth: number;
|
|
461
|
-
width: number;
|
|
462
|
-
height: number;
|
|
463
|
-
} & GroupFileInfo;
|
|
464
|
-
type MediaGroupThumbnailInfo = {
|
|
465
|
-
row: number;
|
|
466
|
-
col: number;
|
|
467
|
-
width: number;
|
|
468
|
-
height: number;
|
|
469
|
-
} & GroupFileInfo;
|
|
470
|
-
type MediaGroupCoverInfo = {
|
|
471
|
-
width: number;
|
|
472
|
-
height: number;
|
|
473
|
-
} & GroupFileInfo;
|
|
474
|
-
type FilePartItem = {
|
|
475
|
-
start: number;
|
|
476
|
-
end: number;
|
|
477
|
-
size: number;
|
|
478
|
-
file: string;
|
|
479
|
-
path: string;
|
|
480
|
-
index?: number;
|
|
481
|
-
md4?: string;
|
|
482
|
-
md5?: string;
|
|
483
|
-
sha1?: string;
|
|
484
|
-
};
|
|
485
|
-
type MediaGroupData = {
|
|
486
|
-
video_meta: ManifestVideoMetaInfo;
|
|
487
|
-
audio_meta: ManifestAudioMetaInfo;
|
|
488
|
-
texts: ManifestTextItem[];
|
|
489
|
-
audios: MediaGroupAudioItem[];
|
|
490
|
-
videos: MediaGroupVideoItem[];
|
|
491
|
-
thumbnail: MediaGroupThumbnailInfo;
|
|
492
|
-
cover: MediaGroupCoverInfo;
|
|
493
|
-
parts: FilePartItem[];
|
|
494
|
-
};
|
|
495
|
-
type SourceGroupData = {
|
|
496
|
-
size: number;
|
|
497
|
-
head: string;
|
|
498
|
-
filename: string;
|
|
499
|
-
btime: number;
|
|
500
|
-
ctime: number;
|
|
501
|
-
mtime: number;
|
|
502
|
-
parts: FilePartItem[];
|
|
503
|
-
};
|
|
504
|
-
type AffixItemData = {
|
|
505
|
-
filename: string;
|
|
506
|
-
uuid: string;
|
|
507
|
-
size: number;
|
|
508
|
-
head: string;
|
|
509
|
-
btime: number;
|
|
510
|
-
ctime: number;
|
|
511
|
-
mtime: number;
|
|
512
|
-
parts: FilePartItem[];
|
|
513
|
-
};
|
|
514
|
-
type TxtGroupData = {
|
|
515
|
-
pad: number;
|
|
516
|
-
pages: number;
|
|
517
|
-
map: {
|
|
518
|
-
file: string;
|
|
519
|
-
start: number;
|
|
520
|
-
end: number;
|
|
521
|
-
};
|
|
522
|
-
parts: FilePartItem[];
|
|
523
|
-
};
|
|
524
|
-
type EncoderResult = {
|
|
525
|
-
source?: SourceGroupData;
|
|
526
|
-
media?: MediaGroupData;
|
|
527
|
-
};
|
|
528
|
-
type ImgGroupData = {
|
|
529
|
-
meta: {
|
|
530
|
-
width: number;
|
|
531
|
-
height: number;
|
|
532
|
-
size: number;
|
|
533
|
-
t_width: number;
|
|
534
|
-
t_height: number;
|
|
535
|
-
t_size: number;
|
|
536
|
-
};
|
|
537
|
-
parts: FilePartItem[];
|
|
538
|
-
};
|
|
539
|
-
type EncodeResult = {
|
|
540
|
-
source?: SourceGroupData;
|
|
541
|
-
media?: MediaGroupData;
|
|
542
|
-
txt?: TxtGroupData;
|
|
543
|
-
img?: ImgGroupData;
|
|
544
|
-
};
|
|
545
|
-
type EncodeWorkerPercent = {
|
|
546
|
-
id: number;
|
|
547
|
-
type: 'percent';
|
|
548
|
-
data: {
|
|
549
|
-
step: UploadProcessStep;
|
|
550
|
-
percent: number;
|
|
551
|
-
};
|
|
552
|
-
};
|
|
553
|
-
type UploadWorkerPercent = {
|
|
554
|
-
id: number;
|
|
555
|
-
type: 'percent';
|
|
556
|
-
data: {
|
|
557
|
-
part_id: number;
|
|
558
|
-
host_type: HostType;
|
|
559
|
-
percent: number;
|
|
560
|
-
};
|
|
561
|
-
};
|
|
562
|
-
type WorkerError = {
|
|
563
|
-
id: number;
|
|
564
|
-
type: 'error';
|
|
565
|
-
data: {
|
|
566
|
-
code: number;
|
|
567
|
-
message: string;
|
|
568
|
-
cause?: string;
|
|
569
|
-
stack?: string;
|
|
570
|
-
};
|
|
571
|
-
};
|
|
572
|
-
type EncodeWorkerMessage = EncodeWorkerPercent | WorkerError;
|
|
573
|
-
type UploadWorkerMessage = UploadWorkerPercent | WorkerError;
|
|
574
|
-
|
|
575
409
|
declare enum UploadStatus {
|
|
576
410
|
NULL = 0,
|
|
577
411
|
ENCODE_READY = 0,
|
|
@@ -585,22 +419,6 @@ declare enum UploadStatus {
|
|
|
585
419
|
SUBMIT_READY = 12,
|
|
586
420
|
SUBMIT_ERROR = 14
|
|
587
421
|
}
|
|
588
|
-
type UploadInputItem = {
|
|
589
|
-
filename: string;
|
|
590
|
-
filepath: string;
|
|
591
|
-
filesize: number;
|
|
592
|
-
local_btime: number;
|
|
593
|
-
local_ctime: number;
|
|
594
|
-
local_mtime: number;
|
|
595
|
-
};
|
|
596
|
-
type EncodedData = {
|
|
597
|
-
media?: MediaGroupData;
|
|
598
|
-
txt?: TxtGroupData;
|
|
599
|
-
img?: ImgGroupData;
|
|
600
|
-
source?: SourceGroupData;
|
|
601
|
-
affix?: AffixItemData[];
|
|
602
|
-
};
|
|
603
|
-
type UploadedData = Record<HostType, Record<string, object>>;
|
|
604
422
|
interface UploadFileError {
|
|
605
423
|
type: 'encode' | 'upload';
|
|
606
424
|
message: string;
|
|
@@ -608,40 +426,27 @@ interface UploadFileError {
|
|
|
608
426
|
details?: string[];
|
|
609
427
|
cause?: any;
|
|
610
428
|
}
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
pid: number;
|
|
631
|
-
type: RecordType;
|
|
632
|
-
task_record_id: number;
|
|
633
|
-
cloud_info: CloudInfoField;
|
|
634
|
-
output_root: string;
|
|
635
|
-
external_texts: string[];
|
|
636
|
-
progress: UploadPrepareData;
|
|
429
|
+
declare enum UploadProgress {
|
|
430
|
+
prepare = "PREPARE",
|
|
431
|
+
separate_video = "SEPARATE_VIDEO",
|
|
432
|
+
separate_audio = "SEPARATE_AUDIO",
|
|
433
|
+
separate_subtitle = "SEPARATE_SUBTITLE",
|
|
434
|
+
transcode_video = "TRANSCODE_VIDEO",
|
|
435
|
+
transcode_audio = "TRANSCODE_AUDIO",
|
|
436
|
+
transcode_thumbnail = "TRANSCODE_THUMBNAIL",
|
|
437
|
+
transcode_source = "TRANSCODE_SOURCE",
|
|
438
|
+
transcode_txt = "TRANSCODE_TXT",
|
|
439
|
+
transcode_img = "TRANSCODE_IMG",
|
|
440
|
+
transcode_affix = "TRANSCODE_AFFIX",
|
|
441
|
+
group_media = "GROUP_MEDIA",
|
|
442
|
+
upload_baidu = "UPLOAD_BAIDU",
|
|
443
|
+
upload_ali = "UPLOAD_ALI",
|
|
444
|
+
end = "END"
|
|
445
|
+
}
|
|
446
|
+
type UploadProgressData = Partial<Record<UploadProgress, {
|
|
447
|
+
weight: number;
|
|
637
448
|
percent: number;
|
|
638
|
-
|
|
639
|
-
uploaded: UploadedData;
|
|
640
|
-
error: UploadFileError | null;
|
|
641
|
-
order: number;
|
|
642
|
-
updated_at: string;
|
|
643
|
-
created_at: string;
|
|
644
|
-
};
|
|
449
|
+
}>>;
|
|
645
450
|
type UploadFileSuceessItem = {
|
|
646
451
|
id: number;
|
|
647
452
|
root_id: number;
|
|
@@ -853,4 +658,4 @@ type NetSuccessItem = {
|
|
|
853
658
|
created_at: Date;
|
|
854
659
|
};
|
|
855
660
|
|
|
856
|
-
export { type
|
|
661
|
+
export { type AliHostDetail, type ApiListResponse, type ApiResponse, type BaiduHostDetail, type CloudInfoField, CloudType, type DownloadFileItem, type DownloadProgressData, type DownloadProgressStep, DownloadStatus, type ErrorData, type HostDetail, type HostListItem, HostType, type LocalListResponse, type Manifest, type ManifestAliInfo, type ManifestAudioItem, type ManifestAudioMetaItem, type ManifestBaiduInfo, type ManifestCoverInfo, type ManifestImgInfo, type ManifestImgMetaInfo, type ManifestInputMetaInfo, type ManifestMediaInfo, type ManifestMetaInfo, type ManifestSourceInfo, type ManifestSubtitleItem, type ManifestThumbnailInfo, type ManifestTxtInfo, type ManifestVideoItem, type ManifestVideoMetaItem, type MemberInfo, type NetSuccessItem, NetType, NormalStatus, type PaginationParams, RecordAdaptResolution, type RecordDetail, RecordFileKeep, type RecordFolderConfig, RecordFtype, type RecordInfo, RecordInsertLast, type RecordListItem, RecordType, type ShareHistoryListItem, type ShareListItem, type ShareUserListItem, type SpaceDetail, type SpaceLevelItem, type SpaceListItem, type SubListItem, type UploadFileError, type UploadFileSuceessItem, UploadProgress, type UploadProgressData, UploadStatus, type UpyunSignInfo, type UserGroupListItem, type UserListItem, type WithP, type WithPK };
|