F95API/scripts/classes/handiwork/game.d.ts

27 lines
643 B
TypeScript
Raw Normal View History

2021-03-05 11:27:36 +00:00
import { TAuthor, TEngine, IGame, TRating, TStatus, TCategory } from "../../interfaces";
export default class Game implements IGame {
2021-03-05 12:05:49 +00:00
censored: boolean;
engine: TEngine;
genre: string[];
installation: string;
language: string[];
lastRelease: Date;
mod: boolean;
os: string[];
status: TStatus;
version: string;
authors: TAuthor[];
category: TCategory;
changelog: string[];
cover: string;
id: number;
lastThreadUpdate: Date;
name: string;
overview: string;
prefixes: string[];
rating: TRating;
tags: string[];
threadPublishingDate: Date;
url: string;
2021-03-05 11:27:36 +00:00
}