This commit is contained in:
Tickbase
2026-04-30 21:00:15 +02:00
parent 348b1a5ed0
commit b3e92d2165
2 changed files with 15 additions and 1 deletions

13
src/types/EpicGame.ts Normal file
View File

@@ -0,0 +1,13 @@
/**
* 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
}

View File

@@ -1,3 +1,4 @@
export * from './Game'
export * from './DlcInfo'
export * from './Config'
export * from './Config'
export * from './EpicGame'