1
1
mirror of https://github.com/neosubhamoy/pytubepp-helper.git synced 2026-02-04 11:22:22 +05:30

(feat): added dynamic port config for msghost, new settings page and ui improvements

This commit is contained in:
2025-02-05 20:15:19 +05:30
Verified
parent 279f651b1e
commit d8a191e408
24 changed files with 2236 additions and 449 deletions

View File

@@ -1,3 +1,16 @@
export interface Config {
port: number;
}
export interface PlatformInfo {
isWindows: boolean;
windowsVersion: string | null;
isMacOs: boolean;
macOsVersion: string | null;
distroId: string | null;
distroPkgMngr: string | null;
}
export interface InstalledPrograms {
winget: {
installed: boolean;