Initial changes

This commit is contained in:
Tickbase
2025-05-18 08:06:56 +02:00
parent 19087c00da
commit 0be15f83e7
82 changed files with 4636 additions and 3237 deletions
+8
View File
@@ -0,0 +1,8 @@
/**
* DLC information interface
*/
export interface DlcInfo {
appid: string;
name: string;
enabled: boolean;
}
+14
View File
@@ -0,0 +1,14 @@
/**
* Game information interface
*/
export interface Game {
id: string;
title: string;
path: string;
platform?: string;
native: boolean;
api_files: string[];
cream_installed?: boolean;
smoke_installed?: boolean;
installing?: boolean;
}
+2
View File
@@ -0,0 +1,2 @@
export * from './Game'
export * from './DlcInfo'