From b3e92d2165695820fc3d478c14fb4edd2d11e570 Mon Sep 17 00:00:00 2001 From: Tickbase Date: Thu, 30 Apr 2026 21:00:15 +0200 Subject: [PATCH] types #93 --- src/types/EpicGame.ts | 13 +++++++++++++ src/types/index.ts | 3 ++- 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 src/types/EpicGame.ts diff --git a/src/types/EpicGame.ts b/src/types/EpicGame.ts new file mode 100644 index 0000000..afdb40b --- /dev/null +++ b/src/types/EpicGame.ts @@ -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 +} \ No newline at end of file diff --git a/src/types/index.ts b/src/types/index.ts index c549320..42868de 100644 --- a/src/types/index.ts +++ b/src/types/index.ts @@ -1,3 +1,4 @@ export * from './Game' export * from './DlcInfo' -export * from './Config' \ No newline at end of file +export * from './Config' +export * from './EpicGame' \ No newline at end of file