mirror of
https://github.com/neosubhamoy/pytubepp-helper.git
synced 2026-02-04 19:32:21 +05:30
(first): initial commit
This commit is contained in:
32
src/types.ts
Normal file
32
src/types.ts
Normal file
@@ -0,0 +1,32 @@
|
||||
export interface InstalledPrograms {
|
||||
python: {
|
||||
installed: boolean;
|
||||
version: string | null;
|
||||
};
|
||||
ffmpeg: {
|
||||
installed: boolean;
|
||||
version: string | null;
|
||||
};
|
||||
pytubefix: {
|
||||
installed: boolean
|
||||
version: string | null;
|
||||
};
|
||||
pytubepp: {
|
||||
installed: boolean;
|
||||
version: string | null;
|
||||
};
|
||||
}
|
||||
|
||||
export interface WebSocketMessage {
|
||||
url: string;
|
||||
command: string;
|
||||
argument: string;
|
||||
}
|
||||
|
||||
export interface Stream {
|
||||
itag: string;
|
||||
mime_type: string;
|
||||
res: string;
|
||||
fps: string;
|
||||
vcodec: string;
|
||||
}
|
||||
Reference in New Issue
Block a user