An interface covering the possible persistence mechanism types.
Signature:
export interface Persistence
Properties
Property | Type | Description |
---|---|---|
type | 'SESSION' | 'LOCAL' | 'NONE' | Type of Persistence. - 'SESSION' is used for temporary persistence such as sessionStorage . - 'LOCAL' is used for long term persistence such as localStorage or IndexedDB . - 'NONE' is used for in-memory, or no persistence. |
Persistence.type
Type of Persistence. - 'SESSION' is used for temporary persistence such as sessionStorage
. - 'LOCAL' is used for long term persistence such as localStorage
or IndexedDB
. - 'NONE' is used for in-memory, or no persistence.
Signature:
readonly type: 'SESSION' | 'LOCAL' | 'NONE';