mirror of
https://github.com/Drop-OSS/drop-app.git
synced 2025-11-09 20:12:14 +10:00
* feat: small refactor * fix: appimage build script * fix: add NO_STRIP to AppImage build * fix: build and dev mode from refactor * fix: submodule step 1 * fix: submodules step 2
9 lines
270 B
TypeScript
9 lines
270 B
TypeScript
import { type DownloadableMetadata, DownloadableType } from '~/types'
|
|
|
|
export default function generateGameMeta(gameId: string, version: string): DownloadableMetadata {
|
|
return {
|
|
id: gameId,
|
|
version,
|
|
downloadType: DownloadableType.Game
|
|
}
|
|
} |