mirror of
https://github.com/neosubhamoy/pytubepp-helper.git
synced 2026-02-04 19:32:21 +05:30
36 lines
665 B
TypeScript
36 lines
665 B
TypeScript
export interface InstalledPrograms {
|
|
winget: {
|
|
installed: boolean;
|
|
version: string | null;
|
|
};
|
|
python: {
|
|
installed: boolean;
|
|
version: string | null;
|
|
};
|
|
pip: {
|
|
installed: boolean;
|
|
version: string | null;
|
|
};
|
|
ffmpeg: {
|
|
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;
|
|
} |