screenscraper-js
Version:
A wrapper around the screenscraper API
31 lines • 815 B
TypeScript
import { AllowedLangs, Game } from "./types";
export declare const transformGame: (game: Game, language: AllowedLangs) => {
id: string;
publisher: import("./types").Editor;
developer: import("./types").Developer;
players: string;
rotation: string;
rating: string;
system: import("./types").System;
name: string;
synopsis: string | undefined;
classifications: import("./types").Classification[];
dates: import("./types").Date[];
family: {
id: string;
shortName: string;
name: string | undefined;
}[];
genres: {
id: string;
name: string | undefined;
}[];
modes: {
id: string;
name: string | undefined;
}[];
media: {
[type: string]: any;
};
};
//# sourceMappingURL=game.d.ts.map