Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
aandrew-me
GitHub Repository: aandrew-me/ytDownloader
Path: blob/main/src/types.d.ts
448 views
1
type format = {
2
vcodec?: string,
3
acodec?: string,
4
ext: string,
5
filesize?: number,
6
format_id: string,
7
format_note: string,
8
height: number,
9
resolution: string,
10
video_ext: string,
11
audio_ext: string,
12
filesize_approx?: number,
13
tbr: number,
14
fps: number,
15
}
16
17
type info = {
18
title: string,
19
id: string,
20
thumbnail: string,
21
duration: number,
22
formats: format[],
23
extractor_key: string,
24
}
25
26
export {
27
format,
28
info
29
}
30