Add platform to SerializableGameInfo type
This commit is contained in:
parent
6b909cb067
commit
8e284cb625
1 changed files with 2 additions and 1 deletions
|
|
@ -1,7 +1,8 @@
|
||||||
type SerializableGameInfo = {
|
type SerializableGameInfo = {
|
||||||
id: number | string | null
|
id: number | string | null
|
||||||
name: string
|
name: string
|
||||||
playtime: number | undefined
|
playtime: string | number | undefined
|
||||||
lastPlayed: Date | undefined
|
lastPlayed: Date | undefined
|
||||||
coverURL: string
|
coverURL: string
|
||||||
|
platform: 'steam' | 'psn'
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue