SessionStorage
type SessionStorage = { snapshot: SnapshotStorage;};Defined in: src/session/storage.ts:26
SessionStorage configuration for pluggable storage backends. Allows users to configure snapshot and transcript storage independently.
Example
Section titled “Example”const storage: SessionStorage = { snapshot: new S3Storage({ bucket: 'my-bucket' })}Properties
Section titled “Properties”snapshot
Section titled “snapshot”snapshot: SnapshotStorage;Defined in: src/session/storage.ts:27