Files
drop-app/utils/generateGameMeta.ts
2025-01-05 19:04:07 +11:00

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
}
}