number error

This commit is contained in:
John Doe
2026-02-02 10:34:55 -05:00
parent 69cbcfe2ac
commit 9f56b06ea4

View File

@@ -1,5 +1,6 @@
import type { Platform } from "~/prisma/client/enums";
import prisma from "~/server/internal/db/database";
import type { GameVersionSize } from "~/server/internal/gamesize";
import gameSizeManager from "~/server/internal/gamesize";
type VersionDownloadOption = {
@@ -7,14 +8,14 @@ type VersionDownloadOption = {
displayName?: string | undefined;
versionPath?: string | undefined;
platform: Platform;
size: number;
size: GameVersionSize;
requiredContent: Array<{
gameId: string;
versionId: string;
name: string;
iconObjectId: string;
shortDescription: string;
size: number;
size: GameVersionSize;
}>;
};