Persistence interface
Stay organized with collections
Save and categorize content based on your preferences.
An interface covering the possible persistence mechanism types.
Signature:
export interface Persistence
Properties
Property |
Type |
Description |
type |
'SESSION' | 'LOCAL' | 'NONE' | 'COOKIE' |
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. - 'COOKIE' is used for cookie persistence, useful for server-side rendering. |
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. - 'COOKIE' is used for cookie persistence, useful for server-side rendering.
Signature:
readonly type: 'SESSION' | 'LOCAL' | 'NONE' | 'COOKIE';
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-03-31 UTC.
[null,null,["Last updated 2025-03-31 UTC."],[],[],null,["# Persistence interface\n\nAn interface covering the possible persistence mechanism types.\n\n**Signature:** \n\n export interface Persistence \n\nProperties\n----------\n\n| Property | Type | Description |\n|-----------------------------------------------|--------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| [type](./auth.persistence.md#persistencetype) | 'SESSION' \\| 'LOCAL' \\| 'NONE' \\| 'COOKIE' | 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. - 'COOKIE' is used for cookie persistence, useful for server-side rendering. |\n\nPersistence.type\n----------------\n\nType 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. - 'COOKIE' is used for cookie persistence, useful for server-side rendering.\n\n**Signature:** \n\n readonly type: 'SESSION' | 'LOCAL' | 'NONE' | 'COOKIE';"]]