Skip to content

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.

const storage: SessionStorage = {
snapshot: new S3Storage({ bucket: 'my-bucket' })
}
snapshot: SnapshotStorage;

Defined in: src/session/storage.ts:27