oidc-client-ts
    Preparing search index...

    Interface RefreshState

    Fake state store implementation necessary for validating refresh token requests.

    interface RefreshState {
        data?: unknown;
        id_token?: string;
        profile: IdTokenClaims;
        refresh_token: string;
        scope?: string;
        session_state: string | null;
    }
    Index

    Properties

    data?: unknown

    custom "state", which can be used by a caller to have "data" round tripped

    id_token?: string
    profile: IdTokenClaims
    refresh_token: string
    scope?: string
    session_state: string | null