@nhost/nhost-js
Version:
Nhost JavaScript SDK
19 lines • 750 B
JavaScript
/**
* Session management module for Nhost authentication
*
* This module exports utilities for managing authentication sessions across
* different environments and storage backends. It provides:
*
* - Session storage abstractions for different environments
* - Session persistence and synchronization
* - Automatic token refresh mechanisms
*
* This is an advanced submodule of the Nhost SDK, primarily used internally but it is exposed
* for advanced use cases.
*
* @packageDocumentation
*/
export { refreshSession } from './refreshSession';
export { detectStorage, SessionStorage, } from './storage';
export { CookieStorage, DEFAULT_SESSION_KEY, LocalStorage, MemoryStorage, } from './storageBackend';
//# sourceMappingURL=index.js.map