Persistence interface  |  Firebase JavaScript API reference (original) (raw)

Persistence interface

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.