Formatting

This commit is contained in:
Tickbase
2025-05-18 18:23:06 +02:00
parent bbbd7482c1
commit 81519e89b7
61 changed files with 714 additions and 775 deletions
+4 -4
View File
@@ -2,7 +2,7 @@
* DLC information interface
*/
export interface DlcInfo {
appid: string;
name: string;
enabled: boolean;
}
appid: string
name: string
enabled: boolean
}
+10 -10
View File
@@ -2,13 +2,13 @@
* 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;
}
id: string
title: string
path: string
platform?: string
native: boolean
api_files: string[]
cream_installed?: boolean
smoke_installed?: boolean
installing?: boolean
}
+1 -1
View File
@@ -1,2 +1,2 @@
export * from './Game'
export * from './DlcInfo'
export * from './DlcInfo'
+3 -3
View File
@@ -2,11 +2,11 @@
declare module '*.svg' {
import React from 'react'
export const ReactComponent: React.FunctionComponent<
React.SVGProps<SVGSVGElement> & { title?: string }
>
const src: string
export default src
}
@@ -29,4 +29,4 @@ declare module '*.jpeg' {
declare module '*.gif' {
const content: string
export default content
}
}