import { RawgClient } from 'rawg-api-sdk';
const client = new RawgClient('<YOUR API KEY>');
const games = await client.games.list();
Or
import { RawgGamesClient } from 'rawg-api-sdk';
const gamesClient = new RawgGamesClient('<YOUR API KEY>');
const games = await gamesClient.list();