Plants vs. Zombies: Replanted - v1.0.3
Preparing search index...
IState
Interface IState
interface for the top-level state object this should precisely mirror the reducer structure
Export
IState
interface
IState
{
app
:
IApp
;
confidential
:
{
account
:
{}
}
;
persistent
:
{
categories
:
{
[
gameId
:
string
]:
ICategoryDictionary
}
;
deployment
:
{
needToDeploy
:
{
[
gameId
:
string
]:
boolean
}
}
;
downloads
:
IStateDownloads
;
gameMode
:
IStateGameMode
;
history
:
IHistoryPersistent
;
mods
:
IModTable
;
profiles
:
{
[
profileId
:
string
]:
IProfile
}
;
transactions
:
IStateTransactions
;
}
;
session
:
{
base
:
ISession
;
browser
:
IBrowserState
;
collections
:
ICollectionInstallState
;
discovery
:
IDiscoveryState
;
extensions
:
{
available
:
IAvailableExtension
[]
;
installed
:
{
[
extId
:
string
]:
IExtension
}
;
optional
:
{
[
extId
:
string
]:
IExtensionOptional
[]
}
;
updateTime
:
number
;
}
;
gameMode
:
ISessionGameMode
;
history
:
IHistoryState
;
notifications
:
INotificationState
;
overlays
:
IOverlaysState
;
}
;
settings
:
ISettings
;
user
:
IUser
;
}
Index
Properties
app
confidential
persistent
session
settings
user
Properties
app
app
:
IApp
confidential
confidential
:
{
account
:
{}
}
persistent
persistent
:
{
categories
:
{
[
gameId
:
string
]:
ICategoryDictionary
}
;
deployment
:
{
needToDeploy
:
{
[
gameId
:
string
]:
boolean
}
}
;
downloads
:
IStateDownloads
;
gameMode
:
IStateGameMode
;
history
:
IHistoryPersistent
;
mods
:
IModTable
;
profiles
:
{
[
profileId
:
string
]:
IProfile
}
;
transactions
:
IStateTransactions
;
}
session
session
:
{
base
:
ISession
;
browser
:
IBrowserState
;
collections
:
ICollectionInstallState
;
discovery
:
IDiscoveryState
;
extensions
:
{
available
:
IAvailableExtension
[]
;
installed
:
{
[
extId
:
string
]:
IExtension
}
;
optional
:
{
[
extId
:
string
]:
IExtensionOptional
[]
}
;
updateTime
:
number
;
}
;
gameMode
:
ISessionGameMode
;
history
:
IHistoryState
;
notifications
:
INotificationState
;
overlays
:
IOverlaysState
;
}
settings
settings
:
ISettings
user
user
:
IUser
Settings
Member Visibility
Protected
Inherited
External
Theme
OS
Light
Dark
On This Page
Properties
app
confidential
persistent
session
settings
user
Plants vs. Zombies: Replanted - v1.0.3
Loading...
interface for the top-level state object this should precisely mirror the reducer structure
Export
IState