Reference
SessionStore
Defines the persistence API used by app-router session helpers.
Signature
interface SessionStoreMembers
function delete(id: string): void | Promise<void>function get(id: string): SessionRecord<TData> | Promise<SessionRecord<TData> | undefined> | undefinedfunction set(record: SessionRecord<TData>): void | Promise<void>