interface Game { uid: string; name: string; description: string; status: 'DRAFT' | 'PUBLISHED' | 'TESTING'; created_at: string; updated_at: string; } interface GameVersion { uid: string; version_number: string; file_path: string; created_at: string; updated_at: string; changelog: string; } type Environments = string; export type { Game, GameVersion, Environments, }; //# sourceMappingURL=games.interface.d.ts.map