mirror of
https://github.com/Novattz/creamlinux-installer.git
synced 2026-05-14 18:32:44 -04:00
13 lines
280 B
TypeScript
13 lines
280 B
TypeScript
/**
|
|
* Epic game discovered via Heroic/Legendary
|
|
*/
|
|
export interface EpicGame {
|
|
app_name: string
|
|
title: string
|
|
install_path: string
|
|
executable: string
|
|
box_art_url: string | null
|
|
scream_installed: boolean
|
|
koaloader_installed: boolean
|
|
proxy_fallback_used: boolean
|
|
} |