export interface TokenResponse { access_token: string; token_type: string; expires: number; refresh_token?: string; } export interface RommPlatformResponse { id: number; slug: string; fs_slug: string; name: string; custom_name?: string; } export interface RommRomResponse { id: number; name: string; platform_id: number; platform_slug: string; file_name: string; file_size: number; crc_hash?: string; md5_hash?: string; sha1_hash?: string; ra_hash?: string; } export interface RommFilesResponse { items: RommRomResponse[]; } //# sourceMappingURL=client-types.d.ts.map