Add a type that has genericized request data

This commit is contained in:
Oliver Akins 2022-03-07 17:57:48 -06:00
parent 4476f3e18c
commit c760b0f36d
No known key found for this signature in database
GPG key ID: 3C2014AF9457AF99

View file

@ -0,0 +1,6 @@
/** The data that is common to most requests to the server. */
export interface ServerRequest {
/** The ID for the game that the action is being taken on. */
game_code: string;
}