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