Options for useSession, memoized via deep comparison of handle and options refs on each render.

interface UseSessionOptions {
    audience: string;
    scopes: string[];
    ttl: number;
}

Properties

Properties

audience: string

Intended audience (recipient) of this session.

scopes: string[]

Permission scopes granted in this session.

ttl: number

Time-to-live in seconds.