Add managing versions menu & fix a typo

This commit is contained in:
2025-07-23 00:47:16 -07:00
parent ab26a4f5e9
commit 520d176368
6 changed files with 132 additions and 11 deletions

View File

@@ -1,3 +1,4 @@
import { DownloadedVersion } from './DownloadedVersion'
import { DownloadProgress } from './DownloadProgress'
import { LauncherVersion } from './LauncherVersion'
import { NormalConfig } from './NormalConfig'
@@ -13,4 +14,5 @@ export type InstallsProps = {
setVersionList: (v: null | LauncherVersion[]) => void
downloadedVersionsConfig: VersionsConfig | null
normalConfig: NormalConfig | null
setManagingVersion: (v: DownloadedVersion | null) => void
}