forked from Berry-Dash/launcher
- Wine support - Loading script - Format code - Hide downloads button on sidebar when not downloading - Add installs list - A lot of improvements & more
9 lines
161 B
TypeScript
9 lines
161 B
TypeScript
export interface LauncherVersion {
|
|
version: string
|
|
displayName: string
|
|
platforms: string[]
|
|
downloadUrls: string[]
|
|
executables: string[]
|
|
id: number
|
|
}
|