Skip to content
This repository has been archived by the owner on Jul 28, 2024. It is now read-only.

Commit

Permalink
🏷️ Create GameListing types
Browse files Browse the repository at this point in the history
  • Loading branch information
MovByte committed Jan 10, 2024
1 parent c4c9b8c commit 06bcd12
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
// TODO: The Moonrock SDK will return this from every API that is proxied
interface GameEntry {
name: string;
description: string;
tags: string[];
minAge: number;
resources: {
thumbnailUrl: string;
siteUrl: string;
};
}
type GameListing = GameEntry[];

0 comments on commit 06bcd12

Please sign in to comment.